diff --git a/CHANGELOG.md b/CHANGELOG.md index c2124a9f3..2bba2190c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased changes +## 8.0.1 + - Fix a bug in computing the number of missed rounds in the event of a timeout. - Fix a bug where the suspended status of a baker pool would be omitted when it was suspended. diff --git a/concordium-base b/concordium-base index 65b2fea55..cb9d55de2 160000 --- a/concordium-base +++ b/concordium-base @@ -1 +1 @@ -Subproject commit 65b2fea5534b830fe4e018a943be65a707d7bec3 +Subproject commit cb9d55de29b344ae4dd88665527bd04f1230ed2d diff --git a/concordium-node/Cargo.lock b/concordium-node/Cargo.lock index 1cf522c32..5a44caaed 100644 --- a/concordium-node/Cargo.lock +++ b/concordium-node/Cargo.lock @@ -796,7 +796,7 @@ dependencies = [ [[package]] name = "concordium_node" -version = "8.0.0" +version = "8.0.1" dependencies = [ "anyhow", "app_dirs2", diff --git a/concordium-node/Cargo.toml b/concordium-node/Cargo.toml index 7f9c37693..e6fadae14 100644 --- a/concordium-node/Cargo.toml +++ b/concordium-node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "concordium_node" -version = "8.0.0" # must be kept in sync with 'is_compatible_version' in 'src/configuration.rs' +version = "8.0.1" # must be kept in sync with 'is_compatible_version' in 'src/configuration.rs' description = "Concordium Node" authors = ["Concordium "] exclude = [".gitignore", ".gitlab-ci.yml", "test/**/*","**/**/.gitignore","**/**/.gitlab-ci.yml"]