Skip to content

Commit dc9469b

Browse files
authored
Bump to v1.17 (#836)
* update to v 1.17 * taplo fmt * fix taplo
1 parent a561cbd commit dc9469b

File tree

12 files changed

+39
-39
lines changed

12 files changed

+39
-39
lines changed

Cargo.lock

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "substrate-api-client"
3-
version = "1.16.0"
3+
version = "1.17.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 = "1.16", default-features = false }
64-
ac-node-api = { path = "node-api", version = "1.16", default-features = false }
65-
ac-primitives = { path = "primitives", version = "1.16", default-features = false }
63+
ac-compose-macros = { path = "compose-macros", version = "1.17", default-features = false }
64+
ac-node-api = { path = "node-api", version = "1.17", default-features = false }
65+
ac-primitives = { path = "primitives", version = "1.17", default-features = false }
6666

6767

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

compose-macros/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-compose-macros"
3-
version = "1.16.0"
3+
version = "1.17.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -15,10 +15,10 @@ log = { version = "0.4", default-features = false }
1515
maybe-async = { version = "0.2" }
1616

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

2020
[dev-dependencies]
21-
ac-node-api = { path = "../node-api", version = "1.16" }
21+
ac-node-api = { path = "../node-api", version = "1.17" }
2222
frame-metadata = { version = "18.0" }
2323
codec = { package = "parity-scale-codec", version = "3.7" }
2424

examples/async/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-examples-async"
3-
version = "1.16.0"
3+
version = "1.17.0"
44
license = "Apache-2.0"
55
edition = "2021"
66

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

2929
# local deps
30-
substrate-api-client = { path = "../..", version = "1.16", features = ["staking-xt", "contracts-xt"] }
30+
substrate-api-client = { path = "../..", version = "1.17", features = ["staking-xt", "contracts-xt"] }

examples/sync/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-examples-sync"
3-
version = "1.16.0"
3+
version = "1.17.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 = "1.16", default-features = false, features = ["tungstenite-client", "ws-client"] }
18+
substrate-api-client = { path = "../..", version = "1.17", default-features = false, features = ["tungstenite-client", "ws-client"] }

examples/wasm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "ac-examples-wasm"
3-
version = "1.16.0"
3+
version = "1.17.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 = { path = "../..", version = "1.16", default-features = false }
10+
substrate-api-client = { path = "../..", version = "1.17", default-features = false }
1111
pallet-balances = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }

keystore/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-keystore"
3-
version = "1.16.0"
3+
version = "1.17.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

node-api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-node-api"
3-
version = "1.16.0"
3+
version = "1.17.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 = "1.16", default-features = false }
39+
ac-primitives = { path = "../primitives", version = "1.17", default-features = false }
4040

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

primitives/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-primitives"
3-
version = "1.16.0"
3+
version = "1.17.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

test-no-std/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-no-std"
3-
version = "1.16.0"
3+
version = "1.17.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", default-features = false }
1010

1111
# local dependencies
12-
ac-compose-macros = { path = "../compose-macros", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
13-
ac-node-api = { path = "../node-api", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
14-
ac-primitives = { path = "../primitives", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
15-
substrate-api-client = { path = "..", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
12+
ac-compose-macros = { path = "../compose-macros", version = "1.17", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
13+
ac-node-api = { path = "../node-api", version = "1.17", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
14+
ac-primitives = { path = "../primitives", version = "1.17", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
15+
substrate-api-client = { path = "..", version = "1.17", 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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-testing-async"
3-
version = "1.16.0"
3+
version = "1.17.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-society = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
2424

2525
# local deps
26-
substrate-api-client = { path = "../..", version = "1.16", features = ["staking-xt", "contracts-xt"] }
26+
substrate-api-client = { path = "../..", version = "1.17", features = ["staking-xt", "contracts-xt"] }

testing/sync/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ac-testing-sync"
3-
version = "1.16.0"
3+
version = "1.17.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 = "1.16", default-features = false, features = ["tungstenite-client", "ws-client"] }
16-
ac-keystore = { path = "../../keystore", version = "1.16" }
15+
substrate-api-client = { path = "../..", version = "1.17", default-features = false, features = ["tungstenite-client", "ws-client"] }
16+
ac-keystore = { path = "../../keystore", version = "1.17" }

0 commit comments

Comments
 (0)