Skip to content

Commit

Permalink
Update internal version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Niederb committed Oct 31, 2024
1 parent 31a4921 commit dac1e96
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 39 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substrate-api-client"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions compose-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-compose-macros"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -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" }

Expand Down
4 changes: 2 additions & 2 deletions examples/async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-examples-async"
version = "0.18.0"
version = "1.16.0"
license = "Apache-2.0"
edition = "2021"

Expand All @@ -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"] }
4 changes: 2 additions & 2 deletions examples/sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-examples-sync"
version = "0.18.0"
version = "1.16.0"
license = "Apache-2.0"
edition = "2021"

Expand All @@ -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"] }
4 changes: 2 additions & 2 deletions examples/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 }
2 changes: 1 addition & 1 deletion keystore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-keystore"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions node-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-node-api"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-primitives"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions test-no-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-no-std"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions testing/async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-testing-async"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -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"] }
6 changes: 3 additions & 3 deletions testing/sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-testing-sync"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -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" }

0 comments on commit dac1e96

Please sign in to comment.