diff --git a/concordium-std/CHANGELOG.md b/concordium-std/CHANGELOG.md index 638c4918..7a233071 100644 --- a/concordium-std/CHANGELOG.md +++ b/concordium-std/CHANGELOG.md @@ -2,10 +2,11 @@ ## Unreleased changes +## concordium-std 10.1.0 (2024-04-04) + - Add support for querying the module reference and contract name of an instance, via the `HasHost::contract_module_reference` and `HasHost::contract_name` functions. - These are only available from protocol version 7, and as such are guarded by the - `p7` feature flag. + These are only available from protocol version 7, and as such are guarded by the `p7` feature flag. - Add two ordered collections: `StateBTreeMap` and `StateBTreeSet`. These are based on [B-Tree](https://en.wikipedia.org/wiki/B-tree), but where each node is stored in the low-level smart contract key-value store. Use one of these when needing operations related to the ordering of the keys, such as `higher(k)` providing the smallest key in collection which is stricly greater than `k`. - Bump MSRV to 1.73 diff --git a/concordium-std/Cargo.toml b/concordium-std/Cargo.toml index 67a812e0..736fc499 100644 --- a/concordium-std/Cargo.toml +++ b/concordium-std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "concordium-std" -version = "10.0.0" +version = "10.1.0" authors = ["Concordium "] edition = "2021" rust-version = "1.73"