diff --git a/packages/cw-storey/CHANGELOG.md b/packages/cw-storey/CHANGELOG.md index a476eda..27c4b70 100644 --- a/packages/cw-storey/CHANGELOG.md +++ b/packages/cw-storey/CHANGELOG.md @@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.3.2] - 2024-09-11 + + +### Added +- add remove to ItemAccess +- add remove entry from map + +### Documentation +- fix indentation ## [0.3.1] - 2024-06-19 diff --git a/packages/cw-storey/Cargo.toml b/packages/cw-storey/Cargo.toml index ab279d2..ec4522e 100644 --- a/packages/cw-storey/Cargo.toml +++ b/packages/cw-storey/Cargo.toml @@ -6,7 +6,7 @@ repository = { workspace = true } homepage = { workspace = true } categories = { workspace = true } keywords = { workspace = true } -version = "0.3.1" +version = "0.3.2" edition = "2021" license = { workspace = true } diff --git a/packages/storey/CHANGELOG.md b/packages/storey/CHANGELOG.md index 761ce61..33496e6 100644 --- a/packages/storey/CHANGELOG.md +++ b/packages/storey/CHANGELOG.md @@ -5,6 +5,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.2.2] - 2024-09-11 + + +### Added +- implement {ItemAccess, ColumnAccess}::get_or +- implement {ItemAccess, ColumnAccess}::try_get +- add Key/OwnedKey impls for more std types +- add remove to ItemAccess +- add remove entry from map + +### Fixed +- fix docs inner links +- fix visibility + +### Documentation +- document `BoundedIterableAccessor` +- document map key types/trait/assoc types ## [0.2.1] - 2024-06-19 diff --git a/packages/storey/Cargo.toml b/packages/storey/Cargo.toml index 68be8ef..f51b3fa 100644 --- a/packages/storey/Cargo.toml +++ b/packages/storey/Cargo.toml @@ -2,7 +2,7 @@ name = "storey" description = "Storage abstractions for blockchains" readme = "../../README.md" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.65" # https://caniuse.rs/features/generic_associated_types authors.workspace = true