From aa72088f8fc91d41106a8afce7a0179cde64ce5d Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Tue, 12 Apr 2022 02:52:12 +0000 Subject: [PATCH] v2.2.1 (#3149) ## Issue Addressed Addresses sync stalls on v2.2.0 (i.e. https://github.com/sigp/lighthouse/issues/3147). ## Additional Info I've avoided doing a full `cargo update` because I noticed there's a new patch version of libp2p and thought it could do with some more testing. Co-authored-by: Paul Hauner --- Cargo.lock | 8 ++++---- beacon_node/Cargo.toml | 2 +- boot_node/Cargo.toml | 2 +- common/lighthouse_version/src/lib.rs | 2 +- lcli/Cargo.toml | 2 +- lighthouse/Cargo.toml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c64752b75f..dc4044c439 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,7 +323,7 @@ dependencies = [ [[package]] name = "beacon_node" -version = "2.2.0" +version = "2.2.1" dependencies = [ "beacon_chain", "clap", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "boot_node" -version = "2.2.0" +version = "2.2.1" dependencies = [ "beacon_node", "clap", @@ -2685,7 +2685,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lcli" -version = "2.2.0" +version = "2.2.1" dependencies = [ "account_utils", "bls", @@ -3178,7 +3178,7 @@ dependencies = [ [[package]] name = "lighthouse" -version = "2.2.0" +version = "2.2.1" dependencies = [ "account_manager", "account_utils", diff --git a/beacon_node/Cargo.toml b/beacon_node/Cargo.toml index 5ff30ce128..986ff7a615 100644 --- a/beacon_node/Cargo.toml +++ b/beacon_node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "beacon_node" -version = "2.2.0" +version = "2.2.1" authors = ["Paul Hauner ", "Age Manning "] edition = "2021" diff --git a/common/lighthouse_version/src/lib.rs b/common/lighthouse_version/src/lib.rs index 6547bd6f7a..5162ddffbc 100644 --- a/common/lighthouse_version/src/lib.rs +++ b/common/lighthouse_version/src/lib.rs @@ -16,7 +16,7 @@ pub const VERSION: &str = git_version!( // NOTE: using --match instead of --exclude for compatibility with old Git "--match=thiswillnevermatchlol" ], - prefix = "Lighthouse/v2.2.0-", + prefix = "Lighthouse/v2.2.1-", fallback = "unknown" ); diff --git a/lcli/Cargo.toml b/lcli/Cargo.toml index 0093d9579b..230eec8da1 100644 --- a/lcli/Cargo.toml +++ b/lcli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lcli" description = "Lighthouse CLI (modeled after zcli)" -version = "2.2.0" +version = "2.2.1" authors = ["Paul Hauner "] edition = "2021" diff --git a/lighthouse/Cargo.toml b/lighthouse/Cargo.toml index 8c9d704857..83fd19c2bc 100644 --- a/lighthouse/Cargo.toml +++ b/lighthouse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lighthouse" -version = "2.2.0" +version = "2.2.1" authors = ["Sigma Prime "] edition = "2021" autotests = false