Skip to content

Commit a89e4b0

Browse files
author
2075
committed
release: 1.44.0
1 parent 8b74b18 commit a89e4b0

6 files changed

Lines changed: 92 additions & 27 deletions

File tree

Cargo.lock

Lines changed: 81 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ USER subzero
5757
EXPOSE 30333 9933 9944 9615
5858
VOLUME ["/data"]
5959

60-
CMD ["/usr/local/bin/subzero"]
60+
CMD ["/usr/local/bin/subzero"]

bin/nodes/subzero/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "subzero-cli"
33
# this is the base version of subzero
44
# we use semver for versioning cli and the runime:
55
# NETWORK.PATCH.IMPL == 1.spec.impl
6-
version = "1.40.0"
6+
version = "1.44.0"
77
authors = ["zero reality <play@zero.io>"]
88
description = "videogames x metaverse"
99
build = "build.rs"

bin/runtimes/alphaville/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zero-runtime"
3-
version = "1.40.0"
3+
version = "1.44.0"
44
authors = ["zero collective <play@zero.io>"]
55
description = "videogames x metaverse"
66
edition = "2018"

bin/runtimes/alphaville/src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
128128
// and set impl_version to 0. If only runtime
129129
// implementation changes and behavior does not, then leave spec_version as
130130
// is and increment impl_version.
131-
spec_version: 40,
131+
spec_version: 44,
132132
impl_version: 0,
133133
apis: RUNTIME_API_VERSIONS,
134134
transaction_version: 1,
@@ -1318,11 +1318,11 @@ construct_runtime!(
13181318
// ZeroCurrencies: module_currencies::{Module, Call, Storage, Event<T>},
13191319
// ZeroAirdrop: module_airdrop::{Module, Call, Storage, Event<T>},
13201320

1321-
GameDAOControl: module_control::{Module, Call, Storage, Event<T>},
1322-
GameDAOGovernance: module_signal::{Module, Call, Storage, Event<T>},
1323-
GameDAOCrowdfunding: module_flow::{Module, Call, Storage, Event<T>},
1324-
GameDAOTangram: module_tangram::{Module, Call, Storage, Event<T>},
1325-
// GameDAOLootDrop: module_loot::{Module, Call, Storage, Event<T>},
1321+
GameDaoControl: module_control::{Module, Call, Storage, Event<T>},
1322+
GameDaoGovernance: module_signal::{Module, Call, Storage, Event<T>},
1323+
GameDaoCrowdfunding: module_flow::{Module, Call, Storage, Event<T>},
1324+
GameDaoTangram: module_tangram::{Module, Call, Storage, Event<T>},
1325+
// GameDaoLootDrop: module_loot::{Module, Call, Storage, Event<T>},
13261326

13271327
}
13281328
);

makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test-mod:
1010
# release
1111

1212
build:
13-
cargo build --release
13+
cargo +nightly build --release
1414
run:
1515
./target/release/subzero --tmp --name local-node
1616
purge:
@@ -62,6 +62,7 @@ docker-run-local:
6262
playzero/subzero:local \
6363
/usr/local/bin/subzero \
6464
--dev \
65+
--tmp \
6566
--name hello-joy \
6667
--ws-external \
6768
--rpc-external \

0 commit comments

Comments
 (0)