Skip to content

Commit

Permalink
Client v0.18.1 (#1188)
Browse files Browse the repository at this point in the history
* Update frontier

* Increase client version to v0.18.1

* launch 0.18.0 -> 0.18.1

* Update cargo.lock
  • Loading branch information
tgmichel authored Jan 17, 2022
1 parent 9036706 commit 8612e8a
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 31 deletions.
42 changes: 21 additions & 21 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.18.0 --chain alphanet
docker run --network="host" purestake/moonbeam:v0.18.1 --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.18.0 --dev
docker run --network="host" purestake/moonbeam:v0.18.1 --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.18.0 --dev --sealing 6000
docker run --network="host" purestake/moonbeam:v0.18.1 --dev --sealing 6000

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

### Prefunded Development Addresses
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 @@ -4,7 +4,7 @@ authors = [ "PureStake" ]
edition = "2018"
homepage = "https://moonbeam.network"
license = "GPL-3.0-only"
version = "0.18.0"
version = "0.18.1"

[dependencies]
libsecp256k1 = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "moonbeam-cli"
authors = [ "PureStake" ]
edition = "2018"
version = "0.18.0"
version = "0.18.1"

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

[dependencies]
ansi_term = "0.12.1"
Expand Down
2 changes: 1 addition & 1 deletion scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ The script [tools/launch.ts] contains a list of presets to execute the different
Ex:

```
yarn launch --parachain moonbase-0.18.0
yarn launch --parachain moonbase-0.18.1
```

(More details in [tools/README.md])
Expand Down
4 changes: 2 additions & 2 deletions tools/launch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ const parachains: { [name: string]: ParachainConfig } = {
chain: "moonbase-local",
docker: "purestake/moonbeam:v0.17.0",
},
"moonbase-0.18.0": {
"moonbase-0.18.1": {
relay: "rococo-9130",
chain: "moonbase-local",
docker: "purestake/moonbeam:v0.18.0",
docker: "purestake/moonbeam:v0.18.1",
},
local: {
relay: "rococo-9111",
Expand Down

0 comments on commit 8612e8a

Please sign in to comment.