diff --git a/CHANGELOG.md b/CHANGELOG.md index d71277c16d..ee103df1bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +2021-03-10 v1.0.11 +================== + +This is a minor release adding support for connecting to the Prater testnet. + + 2021-03-10 v1.0.10 ================== diff --git a/beacon_chain/version.nim b/beacon_chain/version.nim index 78a0042e2b..c3f21da94b 100644 --- a/beacon_chain/version.nim +++ b/beacon_chain/version.nim @@ -9,7 +9,7 @@ when not defined(nimscript): const versionMajor* = 1 versionMinor* = 0 - versionBuild* = 10 + versionBuild* = 11 versionBlob* = "stateofus" # Single word - ends up in the default graffitti diff --git a/docker/dist/README.md b/docker/dist/README.md index 30cf3e82ef..c9763aaad1 100644 --- a/docker/dist/README.md +++ b/docker/dist/README.md @@ -67,3 +67,13 @@ All the same conventions apply: WEB3_URL="ws://localhost:8545" ./run-mainnet-node.sh --max-peers=150 ``` +## Running a Prater node + +`run-prater-beacon-node.sh` is a similar script intended for connecting to the Prater +testnet. All the same conventions apply: + +```bash +# using a local Geth instance +WEB3_URL="ws://localhost:8545" ./run-prater-node.sh --max-peers=150 +``` +