Skip to content

Commit

Permalink
Bump client v0.9.6 & runtime 158 (#630)
Browse files Browse the repository at this point in the history
* Bump client v0.9.6 & runtime 158

* Updates Cargo.lock
  • Loading branch information
crystalin authored Jul 21, 2021
1 parent 8704d74 commit 29daf34
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Docker images are published for every tagged release. Learn more with `moonbeam

```bash
# Join the public testnet
docker run --network="host" purestake/moonbeam:v0.9.5 --chain alphanet
docker run --network="host" purestake/moonbeam:v0.9.6 --chain alphanet
```

You can find more detailed instructions to [run a full node in our TestNet](https://docs.moonbeam.network/node-operators/networks/full-node/)
Expand All @@ -27,7 +27,7 @@ service.

```bash
# Run a dev service node.
docker run --network="host" purestake/moonbeam:v0.9.5 --dev
docker run --network="host" purestake/moonbeam:v0.9.6 --dev
```

For more information, see our detailed instructions to [run a development node](https://docs.moonbeam.network/getting-started/local-node/setting-up-a-node/)
Expand All @@ -38,10 +38,10 @@ The command above will start the node in instant seal mode. It creates a block w

```bash
# Author a block every 6 seconds.
docker run --network="host" purestake/moonbeam:v0.9.5 --dev --sealing 6000
docker run --network="host" purestake/moonbeam:v0.9.6 --dev --sealing 6000

# Manually control the block authorship and finality
docker run --network="host" purestake/moonbeam:v0.9.5 --dev --sealing manual
docker run --network="host" purestake/moonbeam:v0.9.6 --dev --sealing manual
```

### Prefunded Development Addresses
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'moonbeam'
description = 'Moonbeam Collator'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.9.5'
version = '0.9.6'
authors = ["PureStake"]
edition = '2018'

Expand Down
2 changes: 1 addition & 1 deletion node/cli-opt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'moonbeam-cli-opt'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.9.5'
version = '0.9.6'
authors = ["PureStake"]
edition = '2018'

Expand Down
2 changes: 1 addition & 1 deletion node/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moonbeam-cli"
version = "0.9.5"
version = "0.9.6"
authors = ["PureStake"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion node/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'moonbeam-service'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.9.5'
version = '0.9.6'
authors = ["PureStake"]
edition = '2018'

Expand Down
2 changes: 1 addition & 1 deletion runtime/moonbase/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("moonbase"),
impl_name: create_runtime_str!("moonbase"),
authoring_version: 3,
spec_version: 0157,
spec_version: 0158,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonbeam/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("moonbeam"),
impl_name: create_runtime_str!("moonbeam"),
authoring_version: 3,
spec_version: 0157,
spec_version: 0158,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonriver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("moonriver"),
impl_name: create_runtime_str!("moonriver"),
authoring_version: 3,
spec_version: 0157,
spec_version: 0158,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonshadow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("moonshadow"),
impl_name: create_runtime_str!("moonshadow"),
authoring_version: 3,
spec_version: 0157,
spec_version: 0158,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down
5 changes: 5 additions & 0 deletions tools/launch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ const parachains: { [name: string]: ParachainConfig } = {
chain: "moonbase-local",
docker: "purestake/moonbeam:v0.9.4",
},
"moonbase-0.9.6": {
relay: "rococo-9004",
chain: "moonbase-local",
docker: "purestake/moonbeam:v0.9.6",
},
local: {
relay: "rococo-9004",
chain: "moonbase-local",
Expand Down

0 comments on commit 29daf34

Please sign in to comment.