diff --git a/Cargo.toml b/Cargo.toml index 85ba945..1d9111f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,6 @@ categories = ["cryptography::cryptocurrencies"] keywords = ["CosmWasm"] [workspace.dependencies] -storey = { path = "packages/storey", version = "0.3" } -storey-encoding = { path = "packages/storey-encoding", version = "0.1" } +storey = { path = "packages/storey", version = "0.4" } +storey-encoding = { path = "packages/storey-encoding", version = "0.2" } storey-storage = { path = "packages/storey-storage", version = "0.1" } diff --git a/packages/cw-storey/CHANGELOG.md b/packages/cw-storey/CHANGELOG.md index 94090ac..20ccaf7 100644 --- a/packages/cw-storey/CHANGELOG.md +++ b/packages/cw-storey/CHANGELOG.md @@ -6,6 +6,11 @@ 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.4.1] - 2024-11-14 + + +### Added +- easy conversion to cosmwasm_std::StdError ## [0.4.0] - 2024-09-11 diff --git a/packages/cw-storey/Cargo.toml b/packages/cw-storey/Cargo.toml index e2edaf6..7f50fad 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.4.0" +version = "0.4.1" edition = "2021" license = { workspace = true } diff --git a/packages/storey-encoding/CHANGELOG.md b/packages/storey-encoding/CHANGELOG.md index dfc099d..f5e0e38 100644 --- a/packages/storey-encoding/CHANGELOG.md +++ b/packages/storey-encoding/CHANGELOG.md @@ -5,6 +5,11 @@ 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.0] - 2024-11-14 + + +### Added +- [**breaking**] add `update` method to `ItemAccess` ## [0.1.1] - 2024-05-09 diff --git a/packages/storey-encoding/Cargo.toml b/packages/storey-encoding/Cargo.toml index 0b6b95d..cf34d0e 100644 --- a/packages/storey-encoding/Cargo.toml +++ b/packages/storey-encoding/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "storey-encoding" description = "Interfaces for storey encodings" -version = "0.1.1" +version = "0.2.0" edition = "2021" authors.workspace = true license.workspace = true diff --git a/packages/storey-storage/CHANGELOG.md b/packages/storey-storage/CHANGELOG.md index dfc099d..ec7593b 100644 --- a/packages/storey-storage/CHANGELOG.md +++ b/packages/storey-storage/CHANGELOG.md @@ -5,6 +5,11 @@ 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.1.2] - 2024-11-14 + + +### Added +- inclusive/exclusive bounds ## [0.1.1] - 2024-05-09 diff --git a/packages/storey-storage/Cargo.toml b/packages/storey-storage/Cargo.toml index 091414b..9b42cfd 100644 --- a/packages/storey-storage/Cargo.toml +++ b/packages/storey-storage/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "storey-storage" description = "Interfaces for storey storage backends" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors.workspace = true license.workspace = true diff --git a/packages/storey/CHANGELOG.md b/packages/storey/CHANGELOG.md index cdd9529..f1a474b 100644 --- a/packages/storey/CHANGELOG.md +++ b/packages/storey/CHANGELOG.md @@ -6,6 +6,21 @@ 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.4.0] - 2024-11-14 + + +### Added +- add `Column::update` +- [**breaking**] add `update` method to `ItemAccess` +- inclusive/exclusive bounds +- bounded reverse iteration +- reverse iteration + +### Fixed +- [**breaking**] rename `Column::update` to `Column::set` +- [**breaking**] make column id naming consistent +- [**breaking**] start column ids with 1 +- [**breaking**] [#63](https://github.com/CosmWasm/storey/pull/63) sane ordering for signed map keys ## [0.3.0] - 2024-09-11 diff --git a/packages/storey/Cargo.toml b/packages/storey/Cargo.toml index 87c2055..c403bea 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.3.0" +version = "0.4.0" edition = "2021" rust-version = "1.77" authors.workspace = true