Skip to content

Commit e09b622

Browse files
authored
Dusty release 1.2.1 (#199)
* Lockdrop: block number instead for time for bounds * Bump version * [CI]: bump rust version
1 parent 71b1d5f commit e09b622

File tree

12 files changed

+29
-28
lines changed

12 files changed

+29
-28
lines changed

.github/workflows/crates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: hecrj/setup-rust-action@v1
1212
with:
13-
rust-version: 'nightly-2020-02-02'
13+
rust-version: 'nightly-2020-07-01'
1414
targets: 'wasm32-unknown-unknown'
1515
- name: Checkout the source code
1616
uses: actions/checkout@master

.github/workflows/dockerpush.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: hecrj/setup-rust-action@v1
1414
with:
15-
rust-version: 'nightly-2020-02-02'
15+
rust-version: 'nightly-2020-07-01'
1616
targets: 'wasm32-unknown-unknown'
1717
- name: Checkout the source code
1818
uses: actions/checkout@master

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: choco install llvm
1515
- uses: hecrj/setup-rust-action@v1
1616
with:
17-
rust-version: 'nightly-2020-04-04'
17+
rust-version: 'nightly-2020-07-01'
1818
targets: 'wasm32-unknown-unknown'
1919
- name: Checkout the source coder
2020
uses: actions/checkout@master

Cargo.lock

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

bin/node/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plasm-cli"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
authors = ["Stake Technologies <[email protected]>"]
55
description = "Plasm node implementation in Rust."
66
build = "build.rs"

bin/node/cli/src/chain_spec.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ fn make_genesis(
151151
dollar_rate: (9_000, 200),
152152
vote_threshold: 1,
153153
positive_votes: 1,
154-
// Max time bounds for testing purposes
155-
time_bounds: (0, 2_594_459_790_000u64),
154+
// Start from launch for testing purposes
155+
lockdrop_bounds: (0, 1_000_000),
156156
}),
157157
pallet_session: Some(SessionConfig {
158158
keys: keys

bin/node/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 = "plasm-primitives"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
authors = ["Stake Technologies <[email protected]>"]
55
edition = "2018"
66

bin/node/rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plasm-rpc"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
authors = ["Stake Technologies <[email protected]>"]
55
edition = "2018"
66

bin/node/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plasm-runtime"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
authors = ["Stake Technologies <[email protected]>"]
55
edition = "2018"
66
build = "build.rs"

bin/node/runtime/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
6767
// and set impl_version to equal spec_version. If only runtime
6868
// implementation changes and behavior does not, then leave spec_version as
6969
// is and increment impl_version.
70-
spec_version: 3,
71-
impl_version: 3,
70+
spec_version: 4,
71+
impl_version: 4,
7272
apis: RUNTIME_API_VERSIONS,
7373
transaction_version: 1,
7474
};

0 commit comments

Comments
 (0)