From 37a91e006c84c433647f42ccb905ade3ce58d04d Mon Sep 17 00:00:00 2001 From: Harald Heckmann Date: Thu, 12 Oct 2023 18:57:10 +0200 Subject: [PATCH] Update version (#1142) * Update version * Bump all RuntimeVersion * Revert "Bump all RuntimeVersion" This reverts commit 80761b855b3bb6dbbc1767adf8713b4e62014b3b. * Bump BS RuntimeVersion --- Cargo.lock | 40 +++++++++---------- node/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- runtime/battery-station/Cargo.toml | 2 +- runtime/battery-station/src/lib.rs | 4 +- runtime/common/Cargo.toml | 2 +- runtime/zeitgeist/Cargo.toml | 2 +- runtime/zeitgeist/src/lib.rs | 4 +- zrml/authorized/Cargo.toml | 2 +- zrml/court/Cargo.toml | 2 +- zrml/global-disputes/Cargo.toml | 2 +- zrml/liquidity-mining/Cargo.toml | 2 +- zrml/market-commons/Cargo.toml | 2 +- zrml/neo-swaps/Cargo.toml | 2 +- zrml/orderbook-v1/Cargo.toml | 2 +- zrml/prediction-markets/Cargo.toml | 2 +- .../prediction-markets/runtime-api/Cargo.toml | 2 +- zrml/rikiddo/Cargo.toml | 2 +- zrml/simple-disputes/Cargo.toml | 2 +- zrml/styx/Cargo.toml | 2 +- zrml/swaps/Cargo.toml | 2 +- zrml/swaps/rpc/Cargo.toml | 2 +- zrml/swaps/runtime-api/Cargo.toml | 2 +- 23 files changed, 44 insertions(+), 44 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d97dc2c9c..073307155 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -532,7 +532,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "battery-station-runtime" -version = "0.4.0" +version = "0.4.1" dependencies = [ "cfg-if", "common-runtime", @@ -1204,7 +1204,7 @@ dependencies = [ [[package]] name = "common-runtime" -version = "0.4.0" +version = "0.4.1" dependencies = [ "cfg-if", "cumulus-pallet-xcmp-queue", @@ -14277,7 +14277,7 @@ dependencies = [ [[package]] name = "zeitgeist-node" -version = "0.4.0" +version = "0.4.1" dependencies = [ "battery-station-runtime", "cfg-if", @@ -14369,7 +14369,7 @@ dependencies = [ [[package]] name = "zeitgeist-primitives" -version = "0.4.0" +version = "0.4.1" dependencies = [ "arbitrary", "fixed", @@ -14391,7 +14391,7 @@ dependencies = [ [[package]] name = "zeitgeist-runtime" -version = "0.4.0" +version = "0.4.1" dependencies = [ "cfg-if", "common-runtime", @@ -14513,7 +14513,7 @@ dependencies = [ [[package]] name = "zrml-authorized" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -14530,7 +14530,7 @@ dependencies = [ [[package]] name = "zrml-court" -version = "0.4.0" +version = "0.4.1" dependencies = [ "arrayvec 0.7.4", "frame-benchmarking", @@ -14554,7 +14554,7 @@ dependencies = [ [[package]] name = "zrml-global-disputes" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -14574,7 +14574,7 @@ dependencies = [ [[package]] name = "zrml-liquidity-mining" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -14592,7 +14592,7 @@ dependencies = [ [[package]] name = "zrml-market-commons" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-support", "frame-system", @@ -14608,7 +14608,7 @@ dependencies = [ [[package]] name = "zrml-neo-swaps" -version = "0.4.0" +version = "0.4.1" dependencies = [ "fixed", "frame-benchmarking", @@ -14652,7 +14652,7 @@ dependencies = [ [[package]] name = "zrml-orderbook-v1" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -14685,7 +14685,7 @@ dependencies = [ [[package]] name = "zrml-prediction-markets" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -14737,7 +14737,7 @@ dependencies = [ [[package]] name = "zrml-prediction-markets-runtime-api" -version = "0.4.0" +version = "0.4.1" dependencies = [ "parity-scale-codec", "sp-api", @@ -14746,7 +14746,7 @@ dependencies = [ [[package]] name = "zrml-rikiddo" -version = "0.4.0" +version = "0.4.1" dependencies = [ "arbitrary", "cfg-if", @@ -14779,7 +14779,7 @@ dependencies = [ [[package]] name = "zrml-simple-disputes" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -14799,7 +14799,7 @@ dependencies = [ [[package]] name = "zrml-styx" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -14815,7 +14815,7 @@ dependencies = [ [[package]] name = "zrml-swaps" -version = "0.4.0" +version = "0.4.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -14858,7 +14858,7 @@ dependencies = [ [[package]] name = "zrml-swaps-rpc" -version = "0.4.0" +version = "0.4.1" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14871,7 +14871,7 @@ dependencies = [ [[package]] name = "zrml-swaps-runtime-api" -version = "0.4.0" +version = "0.4.1" dependencies = [ "parity-scale-codec", "sp-api", diff --git a/node/Cargo.toml b/node/Cargo.toml index 7cf8ed08c..bf169fa24 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.4.0" +version = "0.4.1" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 82e613543..bca638965 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -37,4 +37,4 @@ std = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zeitgeist-primitives" -version = "0.4.0" +version = "0.4.1" diff --git a/runtime/battery-station/Cargo.toml b/runtime/battery-station/Cargo.toml index 7df3e156b..0e8914dd4 100644 --- a/runtime/battery-station/Cargo.toml +++ b/runtime/battery-station/Cargo.toml @@ -413,7 +413,7 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "battery-station-runtime" -version = "0.4.0" +version = "0.4.1" [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 d39d2250d..37ff5bcf9 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: 49, + spec_version: 50, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 24, + transaction_version: 25, state_version: 1, }; diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index ed404d80b..1e6d468f3 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -80,7 +80,7 @@ std = [ authors = ["Zeitgeist PM "] edition = "2021" name = "common-runtime" -version = "0.4.0" +version = "0.4.1" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/zeitgeist/Cargo.toml b/runtime/zeitgeist/Cargo.toml index 93b1906bd..93752cb9f 100644 --- a/runtime/zeitgeist/Cargo.toml +++ b/runtime/zeitgeist/Cargo.toml @@ -402,7 +402,7 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zeitgeist-runtime" -version = "0.4.0" +version = "0.4.1" [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 ce7ab6c93..83dc1ba8e 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: 49, + spec_version: 50, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 24, + transaction_version: 25, state_version: 1, }; diff --git a/zrml/authorized/Cargo.toml b/zrml/authorized/Cargo.toml index 17f825848..743f29e8c 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.4.0" +version = "0.4.1" diff --git a/zrml/court/Cargo.toml b/zrml/court/Cargo.toml index 10db2de92..66e6961b0 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.4.0" +version = "0.4.1" diff --git a/zrml/global-disputes/Cargo.toml b/zrml/global-disputes/Cargo.toml index 964dc8509..0d089b5d7 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.4.0" +version = "0.4.1" diff --git a/zrml/liquidity-mining/Cargo.toml b/zrml/liquidity-mining/Cargo.toml index e8127631b..67a143ddf 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.4.0" +version = "0.4.1" diff --git a/zrml/market-commons/Cargo.toml b/zrml/market-commons/Cargo.toml index cb52f2835..ce8462107 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.4.0" +version = "0.4.1" diff --git a/zrml/neo-swaps/Cargo.toml b/zrml/neo-swaps/Cargo.toml index 62f5f1a3b..828247a0a 100644 --- a/zrml/neo-swaps/Cargo.toml +++ b/zrml/neo-swaps/Cargo.toml @@ -106,4 +106,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-neo-swaps" -version = "0.4.0" +version = "0.4.1" diff --git a/zrml/orderbook-v1/Cargo.toml b/zrml/orderbook-v1/Cargo.toml index 6c0223b9d..4b174cec2 100644 --- a/zrml/orderbook-v1/Cargo.toml +++ b/zrml/orderbook-v1/Cargo.toml @@ -54,4 +54,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition = "2021" name = "zrml-orderbook-v1" -version = "0.4.0" +version = "0.4.1" diff --git a/zrml/prediction-markets/Cargo.toml b/zrml/prediction-markets/Cargo.toml index 3e4348879..d88f30b77 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.4.0" +version = "0.4.1" diff --git a/zrml/prediction-markets/runtime-api/Cargo.toml b/zrml/prediction-markets/runtime-api/Cargo.toml index 3fe4d8f3b..0d98717a6 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.4.0" +version = "0.4.1" diff --git a/zrml/rikiddo/Cargo.toml b/zrml/rikiddo/Cargo.toml index d4e752bf5..1f1d0c5e1 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.4.0" +version = "0.4.1" diff --git a/zrml/simple-disputes/Cargo.toml b/zrml/simple-disputes/Cargo.toml index 23f6d4323..d50e3ca88 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.4.0" +version = "0.4.1" diff --git a/zrml/styx/Cargo.toml b/zrml/styx/Cargo.toml index 994818ab1..3454d3e80 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.4.0" +version = "0.4.1" diff --git a/zrml/swaps/Cargo.toml b/zrml/swaps/Cargo.toml index 9cbc0b141..84cdca827 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.4.0" +version = "0.4.1" diff --git a/zrml/swaps/rpc/Cargo.toml b/zrml/swaps/rpc/Cargo.toml index 5b08b01bd..b290453ef 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.4.0" +version = "0.4.1" diff --git a/zrml/swaps/runtime-api/Cargo.toml b/zrml/swaps/runtime-api/Cargo.toml index 84ddfa098..31130f1a7 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.4.0" +version = "0.4.1"