From 0db392881a33f6e1efc0615aac7c7dd9a167113d Mon Sep 17 00:00:00 2001 From: Thomas Niederberger Date: Tue, 29 Oct 2024 08:41:15 +0100 Subject: [PATCH] Update internal version numbers --- Cargo.lock | 22 +++++++++++----------- Cargo.toml | 10 +++++----- compose-macros/Cargo.toml | 6 +++--- examples/async/Cargo.toml | 4 ++-- examples/sync/Cargo.toml | 4 ++-- examples/wasm/Cargo.toml | 4 ++-- keystore/Cargo.toml | 2 +- node-api/Cargo.toml | 4 ++-- primitives/Cargo.toml | 2 +- test-no-std/Cargo.toml | 10 +++++----- testing/async/Cargo.toml | 4 ++-- testing/sync/Cargo.toml | 6 +++--- 12 files changed, 39 insertions(+), 39 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 683c247c8..8fd52b74b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "ac-compose-macros" -version = "0.18.0" +version = "1.16.0" dependencies = [ "ac-node-api", "ac-primitives", @@ -26,7 +26,7 @@ dependencies = [ [[package]] name = "ac-examples-async" -version = "0.18.0" +version = "1.16.0" dependencies = [ "env_logger", "frame-support 38.0.0", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "ac-examples-sync" -version = "0.18.0" +version = "1.16.0" dependencies = [ "env_logger", "log", @@ -64,7 +64,7 @@ dependencies = [ [[package]] name = "ac-examples-wasm" -version = "0.18.0" +version = "1.16.0" dependencies = [ "pallet-balances 39.0.0", "sp-core 34.0.0", @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "ac-keystore" -version = "0.18.0" +version = "1.16.0" dependencies = [ "array-bytes", "async-trait", @@ -90,7 +90,7 @@ dependencies = [ [[package]] name = "ac-node-api" -version = "0.18.0" +version = "1.16.0" dependencies = [ "ac-primitives", "bitvec", @@ -118,7 +118,7 @@ dependencies = [ [[package]] name = "ac-primitives" -version = "0.18.0" +version = "1.16.0" dependencies = [ "frame-metadata-hash-extension 0.6.0", "frame-system 38.0.0", @@ -147,7 +147,7 @@ dependencies = [ [[package]] name = "ac-testing-async" -version = "0.18.0" +version = "1.16.0" dependencies = [ "frame-support 38.0.0", "jsonrpsee", @@ -166,7 +166,7 @@ dependencies = [ [[package]] name = "ac-testing-sync" -version = "0.18.0" +version = "1.16.0" dependencies = [ "ac-keystore", "sp-application-crypto 38.0.0", @@ -7591,7 +7591,7 @@ dependencies = [ [[package]] name = "substrate-api-client" -version = "0.18.0" +version = "1.16.0" dependencies = [ "ac-compose-macros", "ac-node-api", @@ -7780,7 +7780,7 @@ dependencies = [ [[package]] name = "test-no-std" -version = "0.18.0" +version = "1.16.0" dependencies = [ "ac-compose-macros", "ac-node-api", diff --git a/Cargo.toml b/Cargo.toml index f54f6ddea..e74d15c6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-api-client" -version = "0.18.0" +version = "1.16.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" @@ -60,13 +60,13 @@ sp-version = { default-features = false, features = ["serde"], version = "37.0.0 frame-support = { optional = true, version = "38.0.0" } # local deps -ac-compose-macros = { path = "compose-macros", version = "0.18", default-features = false } -ac-node-api = { path = "node-api", version = "0.18", default-features = false } -ac-primitives = { path = "primitives", version = "0.18", default-features = false } +ac-compose-macros = { path = "compose-macros", version = "1.16", default-features = false } +ac-node-api = { path = "node-api", version = "1.16", default-features = false } +ac-primitives = { path = "primitives", version = "1.16", default-features = false } [dev-dependencies] -ac-node-api = { path = "node-api", version = "0.18", features = ["mocks"] } +ac-node-api = { path = "node-api", version = "1.16", features = ["mocks"] } rococo-runtime = { version = "18.0.0" } scale-info = { version = "2.1.1", features = ["derive"] } test-case = "3.1.0" diff --git a/compose-macros/Cargo.toml b/compose-macros/Cargo.toml index 5f0978b9b..daa980a8c 100644 --- a/compose-macros/Cargo.toml +++ b/compose-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ac-compose-macros" -version = "0.18.0" +version = "1.16.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" @@ -15,10 +15,10 @@ log = { version = "0.4.14", default-features = false } maybe-async = { version = "0.2.7" } # local -ac-primitives = { path = "../primitives", version = "0.18", default-features = false } +ac-primitives = { path = "../primitives", version = "1.16", default-features = false } [dev-dependencies] -ac-node-api = { path = "../node-api", version = "0.18" } +ac-node-api = { path = "../node-api", version = "1.16" } frame-metadata = { version = "16.0" } codec = { package = "parity-scale-codec", version = "3.6.1" } diff --git a/examples/async/Cargo.toml b/examples/async/Cargo.toml index 5cff3092f..7bc2c89aa 100644 --- a/examples/async/Cargo.toml +++ b/examples/async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ac-examples-async" -version = "0.18.0" +version = "1.16.0" license = "Apache-2.0" edition = "2021" @@ -27,4 +27,4 @@ sp-runtime = { version = "39.0.1" } sp-weights = { version = "31.0.0" } # local deps -substrate-api-client = { path = "../..", version = "0.18", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] } +substrate-api-client = { path = "../..", version = "1.16", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] } diff --git a/examples/sync/Cargo.toml b/examples/sync/Cargo.toml index 159ca51eb..fed51fbe1 100644 --- a/examples/sync/Cargo.toml +++ b/examples/sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ac-examples-sync" -version = "0.18.0" +version = "1.16.0" license = "Apache-2.0" edition = "2021" @@ -15,4 +15,4 @@ sp-runtime = { version = "39.0.1" } sp-weights = { version = "31.0.0" } # local deps -substrate-api-client = { path = "../..", version = "0.18", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] } +substrate-api-client = { path = "../..", version = "1.16", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] } diff --git a/examples/wasm/Cargo.toml b/examples/wasm/Cargo.toml index 0aecc96b3..2cf070eea 100644 --- a/examples/wasm/Cargo.toml +++ b/examples/wasm/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "ac-examples-wasm" -version = "0.18.0" +version = "1.16.0" license = "Apache-2.0" edition = "2021" [dev-dependencies] sp-core = { version = "34.0.0", default-features = false, features = ["full_crypto", "serde"] } sp-runtime = { version = "39.0.1", default-features = false } -substrate-api-client = { path = "../..", version = "0.18", default-features = false } +substrate-api-client = { path = "../..", version = "1.16", default-features = false } pallet-balances = { version = "39.0.0", default-features = false } diff --git a/keystore/Cargo.toml b/keystore/Cargo.toml index 6da767fc4..4d6ca9751 100644 --- a/keystore/Cargo.toml +++ b/keystore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ac-keystore" -version = "0.18.0" +version = "1.16.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" diff --git a/node-api/Cargo.toml b/node-api/Cargo.toml index 6f3944f0a..0d53ce8d7 100644 --- a/node-api/Cargo.toml +++ b/node-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ac-node-api" -version = "0.18.0" +version = "1.16.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" @@ -36,7 +36,7 @@ sp-application-crypto = { version = "38.0.0", default-features = false, features sp-runtime-interface = { version = "28.0.0", default-features = false } # local -ac-primitives = { path = "../primitives", version = "0.18", default-features = false } +ac-primitives = { path = "../primitives", version = "1.16", default-features = false } [dev-dependencies] test-case = "3.1.0" diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 7f36ad359..510e21735 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ac-primitives" -version = "0.18.0" +version = "1.16.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" diff --git a/test-no-std/Cargo.toml b/test-no-std/Cargo.toml index 41180e5e9..2e67a4a06 100644 --- a/test-no-std/Cargo.toml +++ b/test-no-std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-no-std" -version = "0.18.0" +version = "1.16.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" @@ -9,10 +9,10 @@ edition = "2021" libc = { version = "0.2.119", default-features = false } # local dependencies -ac-compose-macros = { path = "../compose-macros", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] } -ac-node-api = { path = "../node-api", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions"] } -ac-primitives = { path = "../primitives", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions"] } -substrate-api-client = { path = "..", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] } +ac-compose-macros = { path = "../compose-macros", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] } +ac-node-api = { path = "../node-api", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions"] } +ac-primitives = { path = "../primitives", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions"] } +substrate-api-client = { path = "..", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] } # substrate dependencies sp-io = { version = "38.0.0", default-features = false, features = ["disable_oom", "disable_panic_handler"] } diff --git a/testing/async/Cargo.toml b/testing/async/Cargo.toml index 901852c38..1d384593f 100644 --- a/testing/async/Cargo.toml +++ b/testing/async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ac-testing-async" -version = "0.18.0" +version = "1.16.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" @@ -23,4 +23,4 @@ pallet-balances = { version = "39.0.0" } pallet-society = { version = "38.0.0" } # local deps -substrate-api-client = { path = "../..", version = "0.18", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] } +substrate-api-client = { path = "../..", version = "1.16", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] } diff --git a/testing/sync/Cargo.toml b/testing/sync/Cargo.toml index ce0b4789a..d8c173118 100644 --- a/testing/sync/Cargo.toml +++ b/testing/sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ac-testing-sync" -version = "0.18.0" +version = "1.16.0" authors = ["Supercomputing Systems AG "] license = "Apache-2.0" edition = "2021" @@ -12,5 +12,5 @@ sp-core = { version = "34.0.0" } sp-runtime = { version = "39.0.1" } # local deps -substrate-api-client = { path = "../..", version = "0.18", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] } -ac-keystore = { path = "../../keystore", version = "0.18" } +substrate-api-client = { path = "../..", version = "1.16", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] } +ac-keystore = { path = "../../keystore", version = "1.16" }