diff --git a/CHANGELOG.md b/CHANGELOG.md index ac5c0b3c8..ebd6efdd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## v1.3.4 + +Released 2022-09-27. + +The on-chain Solido program remains functionally unchanged since v1.0.0. The +Anker program remains unchanged since v1.3.0. + +Changes: + + * Update Solana SDK to 1.9.28. + * Make the maintainer request additional compute units when withdrawing from + inactive stake accounts to the reserve. + +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 +27,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 +38,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 4255a9865..b4109e286 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -190,7 +190,7 @@ dependencies = [ [[package]] name = "anker" -version = "1.3.3" +version = "1.3.4" dependencies = [ "bech32", "borsh 0.9.3", @@ -1755,7 +1755,7 @@ dependencies = [ [[package]] name = "lido" -version = "1.3.3" +version = "1.3.4" dependencies = [ "bincode", "borsh 0.9.3", @@ -1780,7 +1780,7 @@ checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" [[package]] name = "listener" -version = "1.3.3" +version = "1.3.4" dependencies = [ "arbitrary", "chrono", @@ -3492,7 +3492,7 @@ dependencies = [ [[package]] name = "solido-cli" -version = "1.3.3" +version = "1.3.4" dependencies = [ "anchor-lang", "anker", @@ -3530,7 +3530,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 35ad80fb4..d3c4715f8 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 bde233eb8..909bcffe7 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.0" diff --git a/cli/listener/Cargo.toml b/cli/listener/Cargo.toml index 542a3e435..30821433d 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 ab6ba5832..c69803f1c 100644 --- a/cli/listener/fuzz/Cargo.lock +++ b/cli/listener/fuzz/Cargo.lock @@ -190,7 +190,7 @@ dependencies = [ [[package]] name = "anker" -version = "1.3.3" +version = "1.3.4" dependencies = [ "bech32", "borsh 0.9.3", @@ -1671,7 +1671,7 @@ dependencies = [ [[package]] name = "lido" -version = "1.3.3" +version = "1.3.4" dependencies = [ "borsh 0.9.3", "num-derive", @@ -1690,7 +1690,7 @@ checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" [[package]] name = "listener" -version = "1.3.3" +version = "1.3.4" dependencies = [ "chrono", "clap 3.1.18", @@ -3201,7 +3201,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 6fad4684d..ed1e86899 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.0" diff --git a/program/Cargo.toml b/program/Cargo.toml index 73abc4b24..25c3ed62b 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