Skip to content

Commit 96771a8

Browse files
authored
Switch all internal version numbers to 0.18.0 (#791)
1 parent ece488c commit 96771a8

File tree

12 files changed

+39
-39
lines changed

12 files changed

+39
-39
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrate-api-client"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -60,13 +60,13 @@ sp-version = { default-features = false, features = ["serde"], git = "https://gi
6060
frame-support = { optional = true, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
6161

6262
# local deps
63-
ac-compose-macros = { path = "compose-macros", version = "0.5", default-features = false }
64-
ac-node-api = { path = "node-api", version = "0.6", default-features = false }
65-
ac-primitives = { path = "primitives", version = "0.9.1", default-features = false }
63+
ac-compose-macros = { path = "compose-macros", version = "0.18", default-features = false }
64+
ac-node-api = { path = "node-api", version = "0.18", default-features = false }
65+
ac-primitives = { path = "primitives", version = "0.18", default-features = false }
6666

6767

6868
[dev-dependencies]
69-
ac-node-api = { path = "node-api", version = "0.6", features = ["mocks"] }
69+
ac-node-api = { path = "node-api", version = "0.18", features = ["mocks"] }
7070
kitchensink-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
7171
scale-info = { version = "2.1.1", features = ["derive"] }
7272
test-case = "3.1.0"

compose-macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-compose-macros"
3-
version = "0.5.0"
3+
version = "0.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -15,10 +15,10 @@ log = { version = "0.4.14", default-features = false }
1515
maybe-async = { version = "0.2.7" }
1616

1717
# local
18-
ac-primitives = { path = "../primitives", version = "0.9.1", default-features = false }
18+
ac-primitives = { path = "../primitives", version = "0.18", default-features = false }
1919

2020
[dev-dependencies]
21-
ac-node-api = { path = "../node-api", version = "0.6" }
21+
ac-node-api = { path = "../node-api", version = "0.18" }
2222
frame-metadata = { version = "16.0" }
2323
codec = { package = "parity-scale-codec", version = "3.6.1" }
2424

examples/async/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-examples-async"
3-
version = "0.5.0"
3+
version = "0.18.0"
44
license = "Apache-2.0"
55
edition = "2021"
66

@@ -26,4 +26,4 @@ sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch =
2626
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
2727

2828
# local deps
29-
substrate-api-client = { path = "../..", version = "0.17", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] }
29+
substrate-api-client = { path = "../..", version = "0.18", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] }

examples/sync/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-examples-sync"
3-
version = "0.5.0"
3+
version = "0.18.0"
44
license = "Apache-2.0"
55
edition = "2021"
66

@@ -15,4 +15,4 @@ sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch =
1515
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
1616

1717
# local deps
18-
substrate-api-client = { path = "../..", version = "0.17", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] }
18+
substrate-api-client = { path = "../..", version = "0.18", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] }

examples/wasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "ac-examples-wasm"
3-
version = "0.5.0"
3+
version = "0.18.0"
44
license = "Apache-2.0"
55
edition = "2021"
66

77
[dev-dependencies]
88
sp-core = { default-features = false, features = ["full_crypto", "serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
99
sp-runtime = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
10-
substrate-api-client = { default-features = false, path = "../..", version = "0.17" }
10+
substrate-api-client = { path = "../..", version = "0.18", default-features = false }
1111
pallet-balances = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }

keystore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-keystore"
3-
version = "0.10.0"
3+
version = "0.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

node-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-node-api"
3-
version = "0.6.0"
3+
version = "0.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -36,7 +36,7 @@ sp-application-crypto = { default-features = false, features = ["full_crypto"],
3636
sp-runtime-interface = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
3737

3838
# local
39-
ac-primitives = { path = "../primitives", version = "0.9.1", default-features = false }
39+
ac-primitives = { path = "../primitives", version = "0.18", default-features = false }
4040

4141
[dev-dependencies]
4242
test-case = "3.1.0"

primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-primitives"
3-
version = "0.9.1"
3+
version = "0.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

test-no-std/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-no-std"
3-
version = "0.7.1"
3+
version = "0.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -9,10 +9,10 @@ edition = "2021"
99
libc = { version = "0.2.119", default-features = false }
1010

1111
# local dependencies
12-
ac-compose-macros = { path = "../compose-macros", version = "0.5", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
13-
ac-node-api = { path = "../node-api", version = "0.6", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
14-
ac-primitives = { path = "../primitives", version = "0.9.1", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
15-
substrate-api-client = { path = "..", version = "0.17", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
12+
ac-compose-macros = { path = "../compose-macros", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
13+
ac-node-api = { path = "../node-api", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
14+
ac-primitives = { path = "../primitives", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
15+
substrate-api-client = { path = "..", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
1616

1717
# substrate dependencies
1818
sp-io = { default-features = false, features = ["disable_oom", "disable_panic_handler"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }

testing/async/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-testing-async"
3-
version = "0.4.0"
3+
version = "0.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -23,4 +23,4 @@ pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk.git", bran
2323
pallet-staking = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
2424

2525
# local deps
26-
substrate-api-client = { path = "../..", version = "0.17", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] }
26+
substrate-api-client = { path = "../..", version = "0.18", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] }

testing/sync/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-testing-sync"
3-
version = "0.4.0"
3+
version = "0.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -12,5 +12,5 @@ sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "ma
1212
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
1313

1414
# local deps
15-
substrate-api-client = { path = "../..", version = "0.17", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] }
16-
ac-keystore = { path = "../../keystore" }
15+
substrate-api-client = { path = "../..", version = "0.18", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] }
16+
ac-keystore = { path = "../../keystore", version = "0.18" }

0 commit comments

Comments
 (0)