Skip to content

Commit 91d732d

Browse files
committed
- Update internal version numbers
- Switch polkadot dependencies to crates.io using the `psvm` tool
1 parent b471a53 commit 91d732d

File tree

13 files changed

+509
-308
lines changed

13 files changed

+509
-308
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -65,30 +65,30 @@ tungstenite = { version = "0.26", features = ["native-tls", "url"] }
6565
ws = { version = "0.9", features = ["ssl"] }
6666

6767
# Substrate no_std dependencies
68-
pallet-balances = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
69-
sp-application-crypto = { default-features = false, features = ["full_crypto"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
70-
sp-core = { default-features = false, features = ["full_crypto", "serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
71-
sp-crypto-hashing = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
72-
sp-io = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
73-
sp-inherents = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
74-
sp-runtime = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
75-
sp-runtime-interface = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
76-
sp-staking = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
77-
sp-storage = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
78-
sp-version = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
79-
sp-weights = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
68+
pallet-balances = { version = "41.1.0", default-features = false }
69+
sp-application-crypto = { version = "40.1.0", default-features = false, features = ["full_crypto"] }
70+
sp-core = { version = "36.1.0", default-features = false, features = ["full_crypto", "serde"] }
71+
sp-crypto-hashing = { version = "0.1.0", default-features = false }
72+
sp-io = { version = "40.0.1", default-features = false }
73+
sp-inherents = { version = "36.0.0", default-features = false }
74+
sp-runtime = { version = "41.1.0", default-features = false, features = ["serde"] }
75+
sp-runtime-interface = { version = "29.0.1", default-features = false }
76+
sp-staking = { version = "38.0.0", default-features = false, features = ["serde"] }
77+
sp-storage = { version = "22.0.0", default-features = false, features = ["serde"] }
78+
sp-version = { version = "39.0.0", default-features = false, features = ["serde"] }
79+
sp-weights = { version = "31.1.0", default-features = false, features = ["serde"] }
8080

8181
# substrate std / wasm only
82-
frame-support = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
83-
frame-system = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
84-
pallet-assets = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
85-
pallet-contracts = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
86-
pallet-identity = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
87-
pallet-recovery = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
88-
pallet-society = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
89-
pallet-staking = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
90-
sc-keystore = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
91-
sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
82+
frame-support = { version = "40.1.0" }
83+
frame-system = { version = "40.1.0" }
84+
pallet-assets = { version = "42.0.0" }
85+
pallet-contracts = { version = "40.1.0" }
86+
pallet-identity = { version = "40.1.0" }
87+
pallet-recovery = { version = "40.0.0" }
88+
pallet-society = { version = "40.1.0" }
89+
pallet-staking = { version = "40.1.1" }
90+
sc-keystore = { version = "35.0.0" }
91+
sp-keystore = { version = "0.42.0" }
9292

9393
# local deps
9494
ac-keystore = { default-features = false, path = "keystore", version = "1.17" }
@@ -98,6 +98,6 @@ ac-primitives = { default-features = false, path = "primitives", version = "1.17
9898
substrate-api-client = { default-features = false, path = "api-client", version = "1.17" }
9999

100100
# Only used as dev-dependencies
101-
rococo-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
101+
rococo-runtime = { version = "22.1.0" }
102102
test-case = "3.1"
103-
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
103+
sp-keyring = { version = "41.0.0" }

api-client/Cargo.toml

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

compose-macros/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-compose-macros"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

examples/async/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-examples-async"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
license = "Apache-2.0"
55
edition = "2021"
66

examples/sync/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-examples-sync"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
license = "Apache-2.0"
55
edition = "2021"
66

examples/wasm/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-examples-wasm"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
license = "Apache-2.0"
55
edition = "2021"
66

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 = "1.17.0"
3+
version = "1.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

node-api/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-node-api"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

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 = "1.17.0"
3+
version = "1.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

test-no-std/Cargo.toml

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

testing/async/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-testing-async"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

testing/sync/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-testing-sync"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
authors = ["Supercomputing Systems AG <[email protected]>"]
55
license = "Apache-2.0"
66
edition = "2021"

0 commit comments

Comments
 (0)