From 921b8aa50b7b81530b139bcb54dabe92c70d2840 Mon Sep 17 00:00:00 2001 From: Malte Kliemann Date: Tue, 27 Aug 2024 19:41:16 +0200 Subject: [PATCH] Bump versions --- Cargo.lock | 40 +++++++++---------- macros/Cargo.toml | 2 +- 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/hybrid-router/Cargo.toml | 2 +- zrml/market-commons/Cargo.toml | 2 +- zrml/neo-swaps/Cargo.toml | 2 +- zrml/orderbook/Cargo.toml | 2 +- zrml/parimutuel/Cargo.toml | 2 +- zrml/prediction-markets/Cargo.toml | 2 +- .../prediction-markets/runtime-api/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 0503f3964..5328917c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -788,7 +788,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "battery-station-runtime" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "common-runtime", @@ -1445,7 +1445,7 @@ checksum = "2382f75942f4b3be3690fe4f86365e9c853c1587d6ee58212cebf6e2a9ccd101" [[package]] name = "common-runtime" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "cumulus-pallet-xcmp-queue", @@ -14828,11 +14828,11 @@ dependencies = [ [[package]] name = "zeitgeist-macros" -version = "0.5.4" +version = "0.5.5" [[package]] name = "zeitgeist-node" -version = "0.5.4" +version = "0.5.5" dependencies = [ "battery-station-runtime", "cfg-if", @@ -14925,7 +14925,7 @@ dependencies = [ [[package]] name = "zeitgeist-primitives" -version = "0.5.4" +version = "0.5.5" dependencies = [ "arbitrary", "fixed", @@ -14948,7 +14948,7 @@ dependencies = [ [[package]] name = "zeitgeist-runtime" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "common-runtime", @@ -15094,7 +15094,7 @@ dependencies = [ [[package]] name = "zrml-authorized" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15112,7 +15112,7 @@ dependencies = [ [[package]] name = "zrml-court" -version = "0.5.4" +version = "0.5.5" dependencies = [ "arrayvec 0.7.4", "env_logger 0.10.2", @@ -15139,7 +15139,7 @@ dependencies = [ [[package]] name = "zrml-global-disputes" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15161,7 +15161,7 @@ dependencies = [ [[package]] name = "zrml-hybrid-router" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "env_logger 0.10.2", @@ -15198,7 +15198,7 @@ dependencies = [ [[package]] name = "zrml-market-commons" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-support", @@ -15217,7 +15217,7 @@ dependencies = [ [[package]] name = "zrml-neo-swaps" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "env_logger 0.10.2", @@ -15259,7 +15259,7 @@ dependencies = [ [[package]] name = "zrml-orderbook" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15294,7 +15294,7 @@ dependencies = [ [[package]] name = "zrml-parimutuel" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15317,7 +15317,7 @@ dependencies = [ [[package]] name = "zrml-prediction-markets" -version = "0.5.4" +version = "0.5.5" dependencies = [ "cfg-if", "env_logger 0.10.2", @@ -15366,7 +15366,7 @@ dependencies = [ [[package]] name = "zrml-prediction-markets-runtime-api" -version = "0.5.4" +version = "0.5.5" dependencies = [ "parity-scale-codec", "sp-api", @@ -15375,7 +15375,7 @@ dependencies = [ [[package]] name = "zrml-styx" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15392,7 +15392,7 @@ dependencies = [ [[package]] name = "zrml-swaps" -version = "0.5.4" +version = "0.5.5" dependencies = [ "env_logger 0.10.2", "frame-benchmarking", @@ -15435,7 +15435,7 @@ dependencies = [ [[package]] name = "zrml-swaps-rpc" -version = "0.5.4" +version = "0.5.5" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -15448,7 +15448,7 @@ dependencies = [ [[package]] name = "zrml-swaps-runtime-api" -version = "0.5.4" +version = "0.5.5" dependencies = [ "parity-scale-codec", "sp-api", diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 1c027dc28..97e00179a 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -2,4 +2,4 @@ authors = ["Zeitgeist PM "] edition.workspace = true name = "zeitgeist-macros" -version = "0.5.4" +version = "0.5.5" diff --git a/node/Cargo.toml b/node/Cargo.toml index b911d08c9..9686b72ef 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -187,7 +187,7 @@ description = "An evolving blockchain for prediction markets and futarchy." edition.workspace = true homepage = "https://zeitgeist.pm" name = "zeitgeist-node" -version = "0.5.4" +version = "0.5.5" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 22ac5af58..5392cac2d 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -39,4 +39,4 @@ std = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zeitgeist-primitives" -version = "0.5.4" +version = "0.5.5" diff --git a/runtime/battery-station/Cargo.toml b/runtime/battery-station/Cargo.toml index 7c29b4294..3e1bf7035 100644 --- a/runtime/battery-station/Cargo.toml +++ b/runtime/battery-station/Cargo.toml @@ -419,7 +419,7 @@ force-debug = ["sp-debug-derive/force-debug"] authors = ["Zeitgeist PM "] edition.workspace = true name = "battery-station-runtime" -version = "0.5.4" +version = "0.5.5" [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 1dc0bb727..4939109db 100644 --- a/runtime/battery-station/src/lib.rs +++ b/runtime/battery-station/src/lib.rs @@ -97,10 +97,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("zeitgeist"), impl_name: create_runtime_str!("zeitgeist"), authoring_version: 1, - spec_version: 57, + spec_version: 58, impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 30, + transaction_version: 31, state_version: 1, }; diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 3fe9127ab..821350940 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -80,7 +80,7 @@ std = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "common-runtime" -version = "0.5.4" +version = "0.5.5" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/zeitgeist/Cargo.toml b/runtime/zeitgeist/Cargo.toml index 923a11fec..a8a6ccc02 100644 --- a/runtime/zeitgeist/Cargo.toml +++ b/runtime/zeitgeist/Cargo.toml @@ -409,7 +409,7 @@ force-debug = ["sp-debug-derive/force-debug"] authors = ["Zeitgeist PM "] edition.workspace = true name = "zeitgeist-runtime" -version = "0.5.4" +version = "0.5.5" [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 401a5872c..129f55058 100644 --- a/runtime/zeitgeist/src/lib.rs +++ b/runtime/zeitgeist/src/lib.rs @@ -87,10 +87,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("zeitgeist"), impl_name: create_runtime_str!("zeitgeist"), authoring_version: 1, - spec_version: 57, + spec_version: 58, impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 30, + transaction_version: 31, state_version: 1, }; diff --git a/zrml/authorized/Cargo.toml b/zrml/authorized/Cargo.toml index 0f11e94b7..4c3cb2193 100644 --- a/zrml/authorized/Cargo.toml +++ b/zrml/authorized/Cargo.toml @@ -39,4 +39,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-authorized" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/court/Cargo.toml b/zrml/court/Cargo.toml index 976d542c2..94fb309e9 100644 --- a/zrml/court/Cargo.toml +++ b/zrml/court/Cargo.toml @@ -49,4 +49,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-court" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/global-disputes/Cargo.toml b/zrml/global-disputes/Cargo.toml index bcbfbe30c..bc425b010 100644 --- a/zrml/global-disputes/Cargo.toml +++ b/zrml/global-disputes/Cargo.toml @@ -47,4 +47,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-global-disputes" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/hybrid-router/Cargo.toml b/zrml/hybrid-router/Cargo.toml index 269e1f09a..a3a836c04 100644 --- a/zrml/hybrid-router/Cargo.toml +++ b/zrml/hybrid-router/Cargo.toml @@ -90,4 +90,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-hybrid-router" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/market-commons/Cargo.toml b/zrml/market-commons/Cargo.toml index a0573f038..0d4b252f0 100644 --- a/zrml/market-commons/Cargo.toml +++ b/zrml/market-commons/Cargo.toml @@ -34,4 +34,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-market-commons" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/neo-swaps/Cargo.toml b/zrml/neo-swaps/Cargo.toml index 23f1501f5..3c74b4f31 100644 --- a/zrml/neo-swaps/Cargo.toml +++ b/zrml/neo-swaps/Cargo.toml @@ -99,4 +99,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-neo-swaps" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/orderbook/Cargo.toml b/zrml/orderbook/Cargo.toml index 4a8f1ed0d..7b53c388a 100644 --- a/zrml/orderbook/Cargo.toml +++ b/zrml/orderbook/Cargo.toml @@ -57,4 +57,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-orderbook" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/parimutuel/Cargo.toml b/zrml/parimutuel/Cargo.toml index 66d2538cf..1b4e69e9a 100644 --- a/zrml/parimutuel/Cargo.toml +++ b/zrml/parimutuel/Cargo.toml @@ -46,4 +46,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-parimutuel" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/prediction-markets/Cargo.toml b/zrml/prediction-markets/Cargo.toml index 2d4fb53e4..5c35ab2b8 100644 --- a/zrml/prediction-markets/Cargo.toml +++ b/zrml/prediction-markets/Cargo.toml @@ -92,4 +92,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-prediction-markets" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/prediction-markets/runtime-api/Cargo.toml b/zrml/prediction-markets/runtime-api/Cargo.toml index 06a63f286..010cf04e6 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.workspace = true name = "zrml-prediction-markets-runtime-api" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/styx/Cargo.toml b/zrml/styx/Cargo.toml index 0b8a4460d..a0a46f471 100644 --- a/zrml/styx/Cargo.toml +++ b/zrml/styx/Cargo.toml @@ -37,4 +37,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-styx" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/swaps/Cargo.toml b/zrml/swaps/Cargo.toml index fdc1159ec..f8f1bc3e3 100644 --- a/zrml/swaps/Cargo.toml +++ b/zrml/swaps/Cargo.toml @@ -65,4 +65,4 @@ try-runtime = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-swaps" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/swaps/rpc/Cargo.toml b/zrml/swaps/rpc/Cargo.toml index ed71f30be..2b0a04db5 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.workspace = true name = "zrml-swaps-rpc" -version = "0.5.4" +version = "0.5.5" diff --git a/zrml/swaps/runtime-api/Cargo.toml b/zrml/swaps/runtime-api/Cargo.toml index fa689b5fc..819838918 100644 --- a/zrml/swaps/runtime-api/Cargo.toml +++ b/zrml/swaps/runtime-api/Cargo.toml @@ -18,4 +18,4 @@ std = [ authors = ["Zeitgeist PM "] edition.workspace = true name = "zrml-swaps-runtime-api" -version = "0.5.4" +version = "0.5.5"