Skip to content

Commit 3bd041f

Browse files
Update to Polkadot v1.13.0 (#73)
1 parent 0e3dea6 commit 3bd041f

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

Cargo.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -9,63 +9,63 @@ repository = 'https://github.com/gautamdhameja/substrate-validator-set'
99
[dependencies.sp-core]
1010
default-features = false
1111
git = 'https://github.com/paritytech/polkadot-sdk.git'
12-
tag = 'polkadot-v1.12.0'
12+
tag = 'polkadot-v1.13.0'
1313

1414
[dependencies.sp-io]
1515
default-features = false
1616
git = 'https://github.com/paritytech/polkadot-sdk.git'
17-
tag = 'polkadot-v1.12.0'
17+
tag = 'polkadot-v1.13.0'
1818

1919
[dependencies.sp-runtime]
2020
default-features = false
2121
git = 'https://github.com/paritytech/polkadot-sdk.git'
22-
tag = 'polkadot-v1.12.0'
22+
tag = 'polkadot-v1.13.0'
2323

2424
[dependencies.sp-std]
2525
default-features = false
2626
git = 'https://github.com/paritytech/polkadot-sdk.git'
27-
tag = 'polkadot-v1.12.0'
27+
tag = 'polkadot-v1.13.0'
2828

2929
[dependencies.sp-staking]
3030
default-features = false
3131
git = 'https://github.com/paritytech/polkadot-sdk.git'
32-
tag = 'polkadot-v1.12.0'
32+
tag = 'polkadot-v1.13.0'
3333

3434
[dependencies.frame-benchmarking]
3535
default-features = false
3636
git = 'https://github.com/paritytech/polkadot-sdk.git'
3737
optional = true
38-
tag = 'polkadot-v1.12.0'
38+
tag = 'polkadot-v1.13.0'
3939

4040
[dependencies.frame-support]
4141
default-features = false
4242
git = 'https://github.com/paritytech/polkadot-sdk.git'
43-
tag = 'polkadot-v1.12.0'
43+
tag = 'polkadot-v1.13.0'
4444

4545
[dependencies.frame-system]
4646
default-features = false
4747
git = 'https://github.com/paritytech/polkadot-sdk.git'
48-
tag = 'polkadot-v1.12.0'
48+
tag = 'polkadot-v1.13.0'
4949

5050
[dependencies.pallet-session]
5151
default-features = false
5252
features = ['historical']
5353
git = 'https://github.com/paritytech/polkadot-sdk.git'
54-
tag = 'polkadot-v1.12.0'
54+
tag = 'polkadot-v1.13.0'
5555

5656
[dependencies.sp-weights]
5757
default-features = false
5858
git = 'https://github.com/paritytech/polkadot-sdk.git'
59-
tag = 'polkadot-v1.12.0'
59+
tag = 'polkadot-v1.13.0'
6060

6161
[dev-dependencies.sp-state-machine]
6262
default-features = false
6363
git = 'https://github.com/paritytech/polkadot-sdk.git'
64-
tag = 'polkadot-v1.12.0'
64+
tag = 'polkadot-v1.13.0'
6565

6666
[dependencies.scale-info]
6767
default-features = false
68-
features = ['derive']
68+
features = ['derive', 'serde']
6969
version = '2.11.1'
7070

7171
[dependencies.log]
@@ -76,7 +76,7 @@ version = '0.4.21'
7676
default-features = false
7777
features = ['derive']
7878
package = 'parity-scale-codec'
79-
version = '3.6.1'
79+
version = '3.6.12'
8080

8181
[dev-dependencies.serde]
8282
features = ['derive']

docs/im-online-integration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[dependencies.pallet-im-online]
1313
default-features = false
1414
git = 'https://github.com/paritytech/polkadot-sdk.git'
15-
tag = 'polkadot-v1.12.0'
15+
tag = 'polkadot-v1.13.0'
1616
```
1717

1818
```toml
@@ -148,7 +148,7 @@ construct_runtime!(
148148
[dependencies.pallet-im-online]
149149
default-features = false
150150
git = 'https://github.com/paritytech/polkadot-sdk.git'
151-
tag = 'polkadot-v1.12.0'
151+
tag = 'polkadot-v1.13.0'
152152
```
153153

154154
* Import `ImOnlineId` in the `chain_spec.rs`.

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A [Substrate](https://github.com/paritytech/polkadot-sdk/tree/master/substrate#substrate) pallet to add/remove authorities/validators in PoA networks.
44

5-
**Note: Current master is compatible with Substrate [polkadot-v1.12.0](https://github.com/paritytech/polkadot-sdk/tree/polkadot-v1.12.0) branch. For older versions, please see releases/tags.**
5+
**Note: Current master is compatible with Substrate [polkadot-v1.13.0](https://github.com/paritytech/polkadot-sdk/tree/polkadot-v1.13.0) branch. For older versions, please see releases/tags.**
66

77
## Setup with Substrate Node Template
88

@@ -22,7 +22,7 @@ version = '1.1.0'
2222
[dependencies.pallet-session]
2323
default-features = false
2424
git = 'https://github.com/paritytech/polkadot-sdk.git'
25-
tag = 'polkadot-v1.12.0'
25+
tag = 'polkadot-v1.13.0'
2626
```
2727

2828
```toml

0 commit comments

Comments
 (0)