diff --git a/Cargo.toml b/Cargo.toml index bf657e7..9c54e4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ categories = ["cryptography::cryptocurrencies"] keywords = ["CosmWasm"] [workspace.dependencies] -storey = { path = "packages/storey", version = "0.4" } +storey = { path = "packages/storey", version = "0.5" } storey-encoding = { path = "packages/storey-encoding", version = "0.1.2" } -storey-macros = { path = "packages/storey-macros", version = "0.1" } +storey-macros = { path = "packages/storey-macros", version = "0.2" } storey-storage = { path = "packages/storey-storage", version = "0.2" } diff --git a/packages/cw-storey/CHANGELOG.md b/packages/cw-storey/CHANGELOG.md index 0cdbf7c..d81a51d 100644 --- a/packages/cw-storey/CHANGELOG.md +++ b/packages/cw-storey/CHANGELOG.md @@ -6,6 +6,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.6.0] - 2025-04-24 + + +### Added +- add Key trait derive + +### Fixed +- [**breaking**] Remove unnecessary derive ## [0.4.1] - 2025-02-05 diff --git a/packages/cw-storey/Cargo.toml b/packages/cw-storey/Cargo.toml index 6637fd6..ac8b5df 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.5.0" +version = "0.6.0" edition = "2021" license = { workspace = true } diff --git a/packages/storey-macros/CHANGELOG.md b/packages/storey-macros/CHANGELOG.md new file mode 100644 index 0000000..b7de234 --- /dev/null +++ b/packages/storey-macros/CHANGELOG.md @@ -0,0 +1,17 @@ +# 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.2.0] - 2025-04-24 + + +### Added +- add OwnedKey trait derive +- add Key trait derive + +### Fixed +- [**breaking**] Remove unnecessary derive diff --git a/packages/storey-macros/Cargo.toml b/packages/storey-macros/Cargo.toml index 382e134..3a54d1f 100644 --- a/packages/storey-macros/Cargo.toml +++ b/packages/storey-macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "storey-macros" description = "Macros for the storey crate" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors.workspace = true license.workspace = true diff --git a/packages/storey/CHANGELOG.md b/packages/storey/CHANGELOG.md index ec0bfe9..e865cb4 100644 --- a/packages/storey/CHANGELOG.md +++ b/packages/storey/CHANGELOG.md @@ -6,6 +6,18 @@ 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.5.0] - 2025-04-24 + + +### Added +- add OwnedKey trait derive +- add Key trait derive + +### Fixed +- [**breaking**] Remove unnecessary derive + +### Tests +- test router! errors ## [0.4.0] - 2025-02-05 diff --git a/packages/storey/Cargo.toml b/packages/storey/Cargo.toml index b9e2043..b5847be 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.4.0" +version = "0.5.0" edition = "2021" rust-version = "1.77" authors.workspace = true