From 90b3953dda54377ca4750115579bdd20877db858 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Mon, 18 May 2020 15:05:23 +1000 Subject: [PATCH] v0.1.2 (#1155) * Version downgrade * Start updating docs and version tags Co-authored-by: Age Manning --- Cargo.lock | 30 ++++++++++---------- beacon_node/Cargo.toml | 2 +- beacon_node/beacon_chain/Cargo.toml | 2 +- beacon_node/beacon_chain/src/beacon_chain.rs | 2 +- beacon_node/client/Cargo.toml | 2 +- beacon_node/eth1/Cargo.toml | 2 +- beacon_node/eth2-libp2p/Cargo.toml | 2 +- beacon_node/genesis/Cargo.toml | 2 +- beacon_node/network/Cargo.toml | 2 +- beacon_node/rest_api/Cargo.toml | 2 +- beacon_node/store/Cargo.toml | 2 +- beacon_node/timer/Cargo.toml | 2 +- beacon_node/version/Cargo.toml | 2 +- beacon_node/websocket_server/Cargo.toml | 2 +- book/src/become-a-validator-source.md | 2 +- book/src/installation.md | 7 +++-- lighthouse/Cargo.toml | 2 +- lighthouse/environment/Cargo.toml | 2 +- validator_client/Cargo.toml | 2 +- 19 files changed, 36 insertions(+), 35 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9895f3e445..77f8aa2508 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -245,7 +245,7 @@ checksum = "53d1ccbaf7d9ec9537465a97bf19edc1a4e158ecb49fc16178202238c569cc42" [[package]] name = "beacon_chain" -version = "0.2.0" +version = "0.1.2" dependencies = [ "bitvec", "bls", @@ -288,7 +288,7 @@ dependencies = [ [[package]] name = "beacon_node" -version = "0.2.0" +version = "0.1.2" dependencies = [ "beacon_chain", "clap", @@ -589,7 +589,7 @@ dependencies = [ [[package]] name = "client" -version = "0.2.0" +version = "0.1.2" dependencies = [ "beacon_chain", "dirs", @@ -1102,7 +1102,7 @@ dependencies = [ [[package]] name = "environment" -version = "0.2.0" +version = "0.1.2" dependencies = [ "beacon_node", "clap", @@ -1134,7 +1134,7 @@ dependencies = [ [[package]] name = "eth1" -version = "0.2.0" +version = "0.1.2" dependencies = [ "environment", "eth1_test_rig", @@ -1175,7 +1175,7 @@ dependencies = [ [[package]] name = "eth2-libp2p" -version = "0.2.0" +version = "0.1.2" dependencies = [ "base64 0.12.1", "dirs", @@ -1641,7 +1641,7 @@ dependencies = [ [[package]] name = "genesis" -version = "0.2.0" +version = "0.1.2" dependencies = [ "environment", "eth1", @@ -2504,7 +2504,7 @@ dependencies = [ [[package]] name = "lighthouse" -version = "0.2.0" +version = "0.1.2" dependencies = [ "account_manager", "beacon_node", @@ -2811,7 +2811,7 @@ dependencies = [ [[package]] name = "network" -version = "0.2.0" +version = "0.1.2" dependencies = [ "beacon_chain", "error-chain", @@ -3614,7 +3614,7 @@ dependencies = [ [[package]] name = "rest_api" -version = "0.2.0" +version = "0.1.2" dependencies = [ "beacon_chain", "bls", @@ -4298,7 +4298,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "store" -version = "0.2.0" +version = "0.1.2" dependencies = [ "criterion", "db-key", @@ -4504,7 +4504,7 @@ dependencies = [ [[package]] name = "timer" -version = "0.2.0" +version = "0.1.2" dependencies = [ "beacon_chain", "futures 0.3.5", @@ -5135,7 +5135,7 @@ dependencies = [ [[package]] name = "validator_client" -version = "0.2.0" +version = "0.1.2" dependencies = [ "bincode", "bls", @@ -5185,7 +5185,7 @@ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" [[package]] name = "version" -version = "0.2.0" +version = "0.1.2" dependencies = [ "target_info", ] @@ -5448,7 +5448,7 @@ dependencies = [ [[package]] name = "websocket_server" -version = "0.2.0" +version = "0.1.2" dependencies = [ "futures 0.3.5", "serde", diff --git a/beacon_node/Cargo.toml b/beacon_node/Cargo.toml index 048d3caf53..9b336dbcc4 100644 --- a/beacon_node/Cargo.toml +++ b/beacon_node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "beacon_node" -version = "0.2.0" +version = "0.1.2" authors = ["Paul Hauner ", "Age Manning ", "Age Manning "] edition = "2018" diff --git a/beacon_node/beacon_chain/src/beacon_chain.rs b/beacon_node/beacon_chain/src/beacon_chain.rs index 72fe105852..544e6e006e 100644 --- a/beacon_node/beacon_chain/src/beacon_chain.rs +++ b/beacon_node/beacon_chain/src/beacon_chain.rs @@ -49,7 +49,7 @@ use types::*; // Must be 32-bytes or panic. // // |-------must be this long------| -pub const GRAFFITI: &str = "sigp/lighthouse-0.2.0-prerelease"; +pub const GRAFFITI: &str = "sigp/lighthouse-0.1.2-prerelease"; /// The time-out before failure during an operation to take a read/write RwLock on the canonical /// head. diff --git a/beacon_node/client/Cargo.toml b/beacon_node/client/Cargo.toml index a7d8aaa467..c9a9eb0f3c 100644 --- a/beacon_node/client/Cargo.toml +++ b/beacon_node/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "client" -version = "0.2.0" +version = "0.1.2" authors = ["Age Manning "] edition = "2018" diff --git a/beacon_node/eth1/Cargo.toml b/beacon_node/eth1/Cargo.toml index e4085e2429..baf565f3b7 100644 --- a/beacon_node/eth1/Cargo.toml +++ b/beacon_node/eth1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eth1" -version = "0.2.0" +version = "0.1.2" authors = ["Paul Hauner "] edition = "2018" diff --git a/beacon_node/eth2-libp2p/Cargo.toml b/beacon_node/eth2-libp2p/Cargo.toml index 2eccb97aa1..3e2efe9b1f 100644 --- a/beacon_node/eth2-libp2p/Cargo.toml +++ b/beacon_node/eth2-libp2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eth2-libp2p" -version = "0.2.0" +version = "0.1.2" authors = ["Age Manning "] edition = "2018" diff --git a/beacon_node/genesis/Cargo.toml b/beacon_node/genesis/Cargo.toml index d23804454b..b62ac996f5 100644 --- a/beacon_node/genesis/Cargo.toml +++ b/beacon_node/genesis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genesis" -version = "0.2.0" +version = "0.1.2" authors = ["Paul Hauner "] edition = "2018" diff --git a/beacon_node/network/Cargo.toml b/beacon_node/network/Cargo.toml index 3857840f84..b335457cf2 100644 --- a/beacon_node/network/Cargo.toml +++ b/beacon_node/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "network" -version = "0.2.0" +version = "0.1.2" authors = ["Age Manning "] edition = "2018" diff --git a/beacon_node/rest_api/Cargo.toml b/beacon_node/rest_api/Cargo.toml index 5a6ec50387..b846d47221 100644 --- a/beacon_node/rest_api/Cargo.toml +++ b/beacon_node/rest_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rest_api" -version = "0.2.0" +version = "0.1.2" authors = ["Paul Hauner ", "Age Manning ", "Luke Anderson "] edition = "2018" diff --git a/beacon_node/store/Cargo.toml b/beacon_node/store/Cargo.toml index 77388f4344..5563911176 100644 --- a/beacon_node/store/Cargo.toml +++ b/beacon_node/store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "store" -version = "0.2.0" +version = "0.1.2" authors = ["Paul Hauner "] edition = "2018" diff --git a/beacon_node/timer/Cargo.toml b/beacon_node/timer/Cargo.toml index c7b49ec855..da1a70e572 100644 --- a/beacon_node/timer/Cargo.toml +++ b/beacon_node/timer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timer" -version = "0.2.0" +version = "0.1.2" authors = ["Age Manning "] edition = "2018" diff --git a/beacon_node/version/Cargo.toml b/beacon_node/version/Cargo.toml index 030aebb49c..b00f15b9d7 100644 --- a/beacon_node/version/Cargo.toml +++ b/beacon_node/version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version" -version = "0.2.0" +version = "0.1.2" authors = ["Age Manning "] edition = "2018" diff --git a/beacon_node/websocket_server/Cargo.toml b/beacon_node/websocket_server/Cargo.toml index 2b32156769..798fe091ba 100644 --- a/beacon_node/websocket_server/Cargo.toml +++ b/beacon_node/websocket_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "websocket_server" -version = "0.2.0" +version = "0.1.2" authors = ["Paul Hauner "] edition = "2018" diff --git a/book/src/become-a-validator-source.md b/book/src/become-a-validator-source.md index f81047c5c1..3c27fe49d2 100644 --- a/book/src/become-a-validator-source.md +++ b/book/src/become-a-validator-source.md @@ -12,7 +12,7 @@ Once you have Rust installed, you can install Lighthouse with the following comm 1. `git clone https://github.com/sigp/lighthouse.git` 2. `cd lighthouse` -3. `git checkout master` +3. `git checkout v0.1.2` 4. `make` You may need to open a new terminal window before running `make`. diff --git a/book/src/installation.md b/book/src/installation.md index 856bddeeec..770baa0180 100644 --- a/book/src/installation.md +++ b/book/src/installation.md @@ -3,9 +3,10 @@ Lighthouse runs on Linux, MacOS and Windows. Installation should be easy. In fact, if you already have Rust installed all you need is: -- `$ git clone https://github.com/sigp/lighthouse.git` -- `$ cd lighthouse` -- `$ make` +- `git clone https://github.com/sigp/lighthouse.git` +- `cd lighthouse` +- `git checkout v0.1.2` +- `make` If this doesn't work or is not clear enough, see the [Detailed Instructions](#detailed-instructions). If you have further issues, see [Troubleshooting](#troubleshooting). If you'd prefer to use Docker, see the [Docker Guide](./docker.md). diff --git a/lighthouse/Cargo.toml b/lighthouse/Cargo.toml index a449ba7f3a..4106d6ad5b 100644 --- a/lighthouse/Cargo.toml +++ b/lighthouse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lighthouse" -version = "0.2.0" +version = "0.1.2" authors = ["Sigma Prime "] edition = "2018" diff --git a/lighthouse/environment/Cargo.toml b/lighthouse/environment/Cargo.toml index 358e94491c..c9093a15d1 100644 --- a/lighthouse/environment/Cargo.toml +++ b/lighthouse/environment/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "environment" -version = "0.2.0" +version = "0.1.2" authors = ["Paul Hauner "] edition = "2018" diff --git a/validator_client/Cargo.toml b/validator_client/Cargo.toml index f8c8bc1fb2..17fb96ff33 100644 --- a/validator_client/Cargo.toml +++ b/validator_client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "validator_client" -version = "0.2.0" +version = "0.1.2" authors = ["Paul Hauner ", "Age Manning ", "Luke Anderson "] edition = "2018"