Skip to content

Commit

Permalink
Updates binary to v0.8.4 (#546)
Browse files Browse the repository at this point in the history
* Updates binary to v0.8.4

* Updates also moonbase
  • Loading branch information
crystalin authored Jun 28, 2021
1 parent d2d8be4 commit e40d5a9
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 18 deletions.
14 changes: 7 additions & 7 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.8.2 --chain alphanet
docker run --network="host" purestake/moonbeam:v0.8.4 --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.8.2 --dev
docker run --network="host" purestake/moonbeam:v0.8.4 --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.8.2 --dev --sealing 6000
docker run --network="host" purestake/moonbeam:v0.8.4 --dev --sealing 6000

# Manually control the block authorship and finality
docker run --network="host" purestake/moonbeam:v0.8.2 --dev --sealing manual
docker run --network="host" purestake/moonbeam:v0.8.4 --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.8.2'
version = '0.8.4'
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.8.2'
version = '0.8.4'
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.8.2'
version = '0.8.4'
authors = ["PureStake"]
edition = '2018'

Expand Down
2 changes: 1 addition & 1 deletion runtime/moonbase/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'moonbase-runtime'
description = 'Moonbase Runtime'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.8.0-dev'
version = '0.8.4'
authors = ["PureStake"]
edition = '2018'
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonbeam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'moonbeam-runtime'
description = 'Moonbeam Runtime'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.8.0-dev'
version = '0.8.4'
authors = ["PureStake"]
edition = '2018'
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonriver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'moonriver-runtime'
description = 'Moonriver Runtime'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.8.2'
version = '0.8.4'
authors = ["PureStake"]
edition = '2018'
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonshadow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'moonshadow-runtime'
description = 'Moonshadow Runtime'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.8.2'
version = '0.8.4'
authors = ["PureStake"]
edition = '2018'
build = "build.rs"
Expand Down
22 changes: 22 additions & 0 deletions scripts/bump-node-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/bash

if [ -z "$2" ]; then
echo "Usage: $0 <from version> <to version>"
echo "Ex: $0 0.8.3 0.8.5"
exit 1
fi

FROM=$1
TO=$2
sed -i "s/purestake\/moonbeam:v$FROM/purestake\/moonbeam:v$TO/" README.md
sed -i "s/^version = '$FROM'$/version = '$TO'/" node/Cargo.toml
sed -i "s/^version = '$FROM'$/version = '$TO'/" node/cli/Cargo.toml
sed -i "s/^version = '$FROM'$/version = '$TO'/" node/cli-opt/Cargo.toml
sed -i "s/^version = '$FROM'$/version = '$TO'/" node/service/Cargo.toml

sed -i "s/^version = '$FROM'$/version = '$TO'/" runtime/moonbase/Cargo.toml
sed -i "s/^version = '$FROM'$/version = '$TO'/" runtime/moonshadow/Cargo.toml
sed -i "s/^version = '$FROM'$/version = '$TO'/" runtime/moonriver/Cargo.toml
sed -i "s/^version = '$FROM'$/version = '$TO'/" runtime/moonbeam/Cargo.toml

cargo build --release

0 comments on commit e40d5a9

Please sign in to comment.