From ec92adc09675f0b986242af7054604badc347da5 Mon Sep 17 00:00:00 2001 From: Ruud van Asseldonk Date: Fri, 12 Aug 2022 13:13:14 +0200 Subject: [PATCH] Bump version to 1.3.4 --- CHANGELOG.md | 16 ++++++++++++++-- Cargo.lock | 10 +++++----- anker/Cargo.toml | 2 +- cli/common/Cargo.toml | 2 +- cli/listener/Cargo.toml | 2 +- cli/listener/fuzz/Cargo.lock | 8 ++++---- cli/maintainer/Cargo.toml | 2 +- program/Cargo.toml | 2 +- 8 files changed, 28 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac5c0b3c8..3f550d5fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v1.3.4 + +Released 2022-08-12. + +The on-chain Solido program remains functionally unchanged since v1.0.0. The +Anker program remains unchanged since v1.3.0. + +Bugfixes: + + * Correctly account for deactivating stake in Prometheus metrics. + * Improve validator name sanitization in Prometheus metrics. + ## v1.3.3 Released 2022-07-08. @@ -9,7 +21,7 @@ Anker program remains unchanged since v1.3.0. Changes: -* Do not try to call `Anker::SendRewards` from the maintenance daemon. + * Do not try to call `Anker::SendRewards` from the maintenance daemon. ## v1.3.2 @@ -20,7 +32,7 @@ Anker program remains unchanged since v1.3.0. New features: -* Expose Anker TVL metrics in the maintainer Prometheus metrics. + * Expose Anker TVL metrics in the maintainer Prometheus metrics. Bugfixes: diff --git a/Cargo.lock b/Cargo.lock index 440f3947b..0f26ce5d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -206,7 +206,7 @@ dependencies = [ [[package]] name = "anker" -version = "1.3.3" +version = "1.3.4" dependencies = [ "bech32", "borsh 0.9.1", @@ -1938,7 +1938,7 @@ dependencies = [ [[package]] name = "lido" -version = "1.3.3" +version = "1.3.4" dependencies = [ "bincode", "borsh 0.9.1", @@ -1963,7 +1963,7 @@ checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" [[package]] name = "listener" -version = "1.3.3" +version = "1.3.4" dependencies = [ "arbitrary", "chrono", @@ -3821,7 +3821,7 @@ dependencies = [ [[package]] name = "solido-cli" -version = "1.3.3" +version = "1.3.4" dependencies = [ "anchor-lang", "anker", @@ -3859,7 +3859,7 @@ dependencies = [ [[package]] name = "solido-cli-common" -version = "1.3.3" +version = "1.3.4" dependencies = [ "anchor-lang", "anker", diff --git a/anker/Cargo.toml b/anker/Cargo.toml index 2e52acb1a..f1099cc8b 100644 --- a/anker/Cargo.toml +++ b/anker/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Chorus One "] license = "GPL-3.0" edition = "2018" name = "anker" -version = "1.3.3" +version = "1.3.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/cli/common/Cargo.toml b/cli/common/Cargo.toml index 508e140f2..63bbf2240 100644 --- a/cli/common/Cargo.toml +++ b/cli/common/Cargo.toml @@ -4,7 +4,7 @@ description = "Solido common client implementation" license = "GPL-3.0" edition = "2018" name = "solido-cli-common" -version = "1.3.3" +version = "1.3.4" [dependencies] anchor-lang = "0.13.2" diff --git a/cli/listener/Cargo.toml b/cli/listener/Cargo.toml index 7079d00bb..74c97d400 100644 --- a/cli/listener/Cargo.toml +++ b/cli/listener/Cargo.toml @@ -4,7 +4,7 @@ description = "Solido utility for indexing price data" license = "GPL-3.0" edition = "2018" name = "listener" -version = "1.3.3" +version = "1.3.4" [dependencies] rusqlite = "0.26.3" diff --git a/cli/listener/fuzz/Cargo.lock b/cli/listener/fuzz/Cargo.lock index dc84b4a66..8e02ef12e 100644 --- a/cli/listener/fuzz/Cargo.lock +++ b/cli/listener/fuzz/Cargo.lock @@ -200,7 +200,7 @@ dependencies = [ [[package]] name = "anker" -version = "1.3.3" +version = "1.3.4" dependencies = [ "bech32", "borsh 0.9.3", @@ -1828,7 +1828,7 @@ dependencies = [ [[package]] name = "lido" -version = "1.3.3" +version = "1.3.4" dependencies = [ "borsh 0.9.3", "num-derive", @@ -1847,7 +1847,7 @@ checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" [[package]] name = "listener" -version = "1.3.3" +version = "1.3.4" dependencies = [ "chrono", "clap 3.1.6", @@ -3536,7 +3536,7 @@ dependencies = [ [[package]] name = "solido-cli-common" -version = "1.3.3" +version = "1.3.4" dependencies = [ "anchor-lang", "anker", diff --git a/cli/maintainer/Cargo.toml b/cli/maintainer/Cargo.toml index 4e2c4dc90..07dc76b5b 100644 --- a/cli/maintainer/Cargo.toml +++ b/cli/maintainer/Cargo.toml @@ -4,7 +4,7 @@ description = "Solido Command-line Utility" license = "GPL-3.0" edition = "2018" name = "solido-cli" -version = "1.3.3" +version = "1.3.4" [dependencies] anchor-lang = "0.13.2" diff --git a/program/Cargo.toml b/program/Cargo.toml index 51f3df0a7..f117641b7 100644 --- a/program/Cargo.toml +++ b/program/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Chorus One "] license = "GPL-3.0" edition = "2018" name = "lido" -version = "1.3.3" +version = "1.3.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html