diff --git a/Cargo.lock b/Cargo.lock index 22b4fa212..33f7b880f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -526,7 +526,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "battery-station-runtime" -version = "0.3.11" +version = "0.4.0" dependencies = [ "cfg-if", "common-runtime", @@ -1190,7 +1190,7 @@ dependencies = [ [[package]] name = "common-runtime" -version = "0.3.11" +version = "0.4.0" dependencies = [ "cfg-if", "cumulus-pallet-xcmp-queue", @@ -14229,7 +14229,7 @@ dependencies = [ [[package]] name = "zeitgeist-node" -version = "0.3.11" +version = "0.4.0" dependencies = [ "battery-station-runtime", "cfg-if", @@ -14321,7 +14321,7 @@ dependencies = [ [[package]] name = "zeitgeist-primitives" -version = "0.3.11" +version = "0.4.0" dependencies = [ "arbitrary", "frame-support", @@ -14340,7 +14340,7 @@ dependencies = [ [[package]] name = "zeitgeist-runtime" -version = "0.3.11" +version = "0.4.0" dependencies = [ "cfg-if", "common-runtime", @@ -14460,7 +14460,7 @@ dependencies = [ [[package]] name = "zrml-authorized" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -14477,7 +14477,7 @@ dependencies = [ [[package]] name = "zrml-court" -version = "0.3.11" +version = "0.4.0" dependencies = [ "arrayvec 0.7.4", "frame-benchmarking", @@ -14501,7 +14501,7 @@ dependencies = [ [[package]] name = "zrml-global-disputes" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -14521,7 +14521,7 @@ dependencies = [ [[package]] name = "zrml-liquidity-mining" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -14539,7 +14539,7 @@ dependencies = [ [[package]] name = "zrml-market-commons" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-support", "frame-system", @@ -14555,7 +14555,7 @@ dependencies = [ [[package]] name = "zrml-orderbook-v1" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -14584,7 +14584,7 @@ dependencies = [ [[package]] name = "zrml-prediction-markets" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -14636,7 +14636,7 @@ dependencies = [ [[package]] name = "zrml-prediction-markets-runtime-api" -version = "0.3.11" +version = "0.4.0" dependencies = [ "parity-scale-codec", "sp-api", @@ -14645,7 +14645,7 @@ dependencies = [ [[package]] name = "zrml-rikiddo" -version = "0.3.11" +version = "0.4.0" dependencies = [ "arbitrary", "cfg-if", @@ -14678,7 +14678,7 @@ dependencies = [ [[package]] name = "zrml-simple-disputes" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -14698,7 +14698,7 @@ dependencies = [ [[package]] name = "zrml-styx" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -14714,7 +14714,7 @@ dependencies = [ [[package]] name = "zrml-swaps" -version = "0.3.11" +version = "0.4.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -14757,7 +14757,7 @@ dependencies = [ [[package]] name = "zrml-swaps-rpc" -version = "0.3.11" +version = "0.4.0" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14770,7 +14770,7 @@ dependencies = [ [[package]] name = "zrml-swaps-runtime-api" -version = "0.3.11" +version = "0.4.0" dependencies = [ "parity-scale-codec", "sp-api", diff --git a/node/Cargo.toml b/node/Cargo.toml index 2309a837b..7cf8ed08c 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -187,7 +187,7 @@ description = "An evolving blockchain for prediction markets and futarchy." edition = "2021" homepage = "https://zeitgeist.pm" name = "zeitgeist-node" -version = "0.3.11" +version = "0.4.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 8e7eb15c7..4c2360e79 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -34,4 +34,4 @@ std = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zeitgeist-primitives" -version = "0.3.11" +version = "0.4.0" diff --git a/runtime/battery-station/Cargo.toml b/runtime/battery-station/Cargo.toml index ade6c68de..03329040f 100644 --- a/runtime/battery-station/Cargo.toml +++ b/runtime/battery-station/Cargo.toml @@ -406,7 +406,7 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "battery-station-runtime" -version = "0.3.11" +version = "0.4.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/battery-station/src/lib.rs b/runtime/battery-station/src/lib.rs index 8e26a9494..682bbbf21 100644 --- a/runtime/battery-station/src/lib.rs +++ b/runtime/battery-station/src/lib.rs @@ -105,10 +105,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("zeitgeist"), impl_name: create_runtime_str!("zeitgeist"), authoring_version: 1, - spec_version: 48, + spec_version: 49, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 23, + transaction_version: 24, state_version: 1, }; diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 9ed0a7429..9935b06e0 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -78,7 +78,7 @@ std = [ authors = ["Zeitgeist PM "] edition = "2021" name = "common-runtime" -version = "0.3.11" +version = "0.4.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/zeitgeist/Cargo.toml b/runtime/zeitgeist/Cargo.toml index 0798fd41c..2de9244e0 100644 --- a/runtime/zeitgeist/Cargo.toml +++ b/runtime/zeitgeist/Cargo.toml @@ -394,7 +394,7 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zeitgeist-runtime" -version = "0.3.11" +version = "0.4.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/zeitgeist/src/lib.rs b/runtime/zeitgeist/src/lib.rs index 44811a014..ee9ab02d3 100644 --- a/runtime/zeitgeist/src/lib.rs +++ b/runtime/zeitgeist/src/lib.rs @@ -93,10 +93,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("zeitgeist"), impl_name: create_runtime_str!("zeitgeist"), authoring_version: 1, - spec_version: 48, + spec_version: 49, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 23, + transaction_version: 24, state_version: 1, }; diff --git a/zrml/authorized/Cargo.toml b/zrml/authorized/Cargo.toml index ae4ba5c12..17f825848 100644 --- a/zrml/authorized/Cargo.toml +++ b/zrml/authorized/Cargo.toml @@ -38,4 +38,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-authorized" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/court/Cargo.toml b/zrml/court/Cargo.toml index d40612540..10db2de92 100644 --- a/zrml/court/Cargo.toml +++ b/zrml/court/Cargo.toml @@ -46,4 +46,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-court" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/global-disputes/Cargo.toml b/zrml/global-disputes/Cargo.toml index fc0104836..964dc8509 100644 --- a/zrml/global-disputes/Cargo.toml +++ b/zrml/global-disputes/Cargo.toml @@ -45,4 +45,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-global-disputes" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/liquidity-mining/Cargo.toml b/zrml/liquidity-mining/Cargo.toml index 8bf7010fa..e8127631b 100644 --- a/zrml/liquidity-mining/Cargo.toml +++ b/zrml/liquidity-mining/Cargo.toml @@ -40,4 +40,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-liquidity-mining" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/market-commons/Cargo.toml b/zrml/market-commons/Cargo.toml index 735e6e8a2..cb52f2835 100644 --- a/zrml/market-commons/Cargo.toml +++ b/zrml/market-commons/Cargo.toml @@ -31,4 +31,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-market-commons" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/orderbook-v1/Cargo.toml b/zrml/orderbook-v1/Cargo.toml index 4debd5bbd..cdd2dc0c5 100644 --- a/zrml/orderbook-v1/Cargo.toml +++ b/zrml/orderbook-v1/Cargo.toml @@ -47,4 +47,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-orderbook-v1" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/prediction-markets/Cargo.toml b/zrml/prediction-markets/Cargo.toml index f1e8a5cdc..3e4348879 100644 --- a/zrml/prediction-markets/Cargo.toml +++ b/zrml/prediction-markets/Cargo.toml @@ -95,4 +95,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-prediction-markets" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/prediction-markets/runtime-api/Cargo.toml b/zrml/prediction-markets/runtime-api/Cargo.toml index 255435d0d..3fe4d8f3b 100644 --- a/zrml/prediction-markets/runtime-api/Cargo.toml +++ b/zrml/prediction-markets/runtime-api/Cargo.toml @@ -15,4 +15,4 @@ std = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-prediction-markets-runtime-api" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/rikiddo/Cargo.toml b/zrml/rikiddo/Cargo.toml index 37ecc1c7c..d4e752bf5 100644 --- a/zrml/rikiddo/Cargo.toml +++ b/zrml/rikiddo/Cargo.toml @@ -42,4 +42,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-rikiddo" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/simple-disputes/Cargo.toml b/zrml/simple-disputes/Cargo.toml index d84a51431..23f6d4323 100644 --- a/zrml/simple-disputes/Cargo.toml +++ b/zrml/simple-disputes/Cargo.toml @@ -41,4 +41,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-simple-disputes" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/styx/Cargo.toml b/zrml/styx/Cargo.toml index c7690f628..994818ab1 100644 --- a/zrml/styx/Cargo.toml +++ b/zrml/styx/Cargo.toml @@ -36,4 +36,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-styx" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/swaps/Cargo.toml b/zrml/swaps/Cargo.toml index efac5dfb8..9cbc0b141 100644 --- a/zrml/swaps/Cargo.toml +++ b/zrml/swaps/Cargo.toml @@ -66,4 +66,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-swaps" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/swaps/rpc/Cargo.toml b/zrml/swaps/rpc/Cargo.toml index 917bc1137..5b08b01bd 100644 --- a/zrml/swaps/rpc/Cargo.toml +++ b/zrml/swaps/rpc/Cargo.toml @@ -11,4 +11,4 @@ zrml-swaps-runtime-api = { workspace = true, features = ["default"] } authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-swaps-rpc" -version = "0.3.11" +version = "0.4.0" diff --git a/zrml/swaps/runtime-api/Cargo.toml b/zrml/swaps/runtime-api/Cargo.toml index fade3ab74..84ddfa098 100644 --- a/zrml/swaps/runtime-api/Cargo.toml +++ b/zrml/swaps/runtime-api/Cargo.toml @@ -18,4 +18,4 @@ std = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-swaps-runtime-api" -version = "0.3.11" +version = "0.4.0"