diff --git a/Cargo.toml b/Cargo.toml index 4a05ac9..27d57b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,6 @@ categories = ["cryptography::cryptocurrencies"] keywords = ["CosmWasm"] [workspace.dependencies] -storey = { path = "packages/storey", version = "0.1" } +storey = { path = "packages/storey", version = "0.2" } storey-encoding = { path = "packages/storey-encoding", version = "0.1" } storey-storage = { path = "packages/storey-storage", version = "0.1" } diff --git a/packages/cw-storey/CHANGELOG.md b/packages/cw-storey/CHANGELOG.md index f78b7f5..f1683cf 100644 --- a/packages/cw-storey/CHANGELOG.md +++ b/packages/cw-storey/CHANGELOG.md @@ -5,6 +5,14 @@ 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-05-09 + + +### Added +- use single-byte keys for top-level containers + +### Other +- rename crates to packages ## [0.1.0](https://github.com/CosmWasm/storey/releases/tag/cw-storey-v0.1.0) - 2024-03-22 diff --git a/packages/cw-storey/Cargo.toml b/packages/cw-storey/Cargo.toml index 8128179..395d362 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.1.0" +version = "0.2.0" edition = "2021" license = { workspace = true } diff --git a/packages/storey-encoding/CHANGELOG.md b/packages/storey-encoding/CHANGELOG.md new file mode 100644 index 0000000..dfc099d --- /dev/null +++ b/packages/storey-encoding/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +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.1] - 2024-05-09 + + +### Other +- rename crates to packages diff --git a/packages/storey-encoding/Cargo.toml b/packages/storey-encoding/Cargo.toml index 08fe6bf..0b6b95d 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.0" +version = "0.1.1" edition = "2021" authors.workspace = true license.workspace = true diff --git a/packages/storey-storage/CHANGELOG.md b/packages/storey-storage/CHANGELOG.md new file mode 100644 index 0000000..dfc099d --- /dev/null +++ b/packages/storey-storage/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +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.1] - 2024-05-09 + + +### Other +- rename crates to packages diff --git a/packages/storey-storage/Cargo.toml b/packages/storey-storage/Cargo.toml index 783ffbb..091414b 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.0" +version = "0.1.1" edition = "2021" authors.workspace = true license.workspace = true diff --git a/packages/storey/CHANGELOG.md b/packages/storey/CHANGELOG.md index 2297644..c6d8e29 100644 --- a/packages/storey/CHANGELOG.md +++ b/packages/storey/CHANGELOG.md @@ -5,6 +5,20 @@ 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-05-09 + + +### Added +- *(storey)* return ix on `Column::push` +- provide typed bounds for iteration +- use single-byte keys for top-level containers + +### Fixed +- *(storey)* Column::push bounds checking + +### Other +- less awkward associated type names +- rename crates to packages ## [0.1.0](https://github.com/CosmWasm/storey/releases/tag/storey-v0.1.0) - 2024-03-22 diff --git a/packages/storey/Cargo.toml b/packages/storey/Cargo.toml index e85a4d0..5724c74 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.1.0" +version = "0.2.0" edition = "2021" rust-version = "1.65" # https://caniuse.rs/features/generic_associated_types authors.workspace = true