Skip to content

Commit bf7dfe3

Browse files
authored
Merge pull request #100 from CosmWasm/release-plz-2025-04-07T09-55-10Z
chore: release
2 parents 5e520bd + d4e125d commit bf7dfe3

File tree

7 files changed

+42
-5
lines changed

7 files changed

+42
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = ["cryptography::cryptocurrencies"]
1111
keywords = ["CosmWasm"]
1212

1313
[workspace.dependencies]
14-
storey = { path = "packages/storey", version = "0.4" }
14+
storey = { path = "packages/storey", version = "0.5" }
1515
storey-encoding = { path = "packages/storey-encoding", version = "0.1.2" }
16-
storey-macros = { path = "packages/storey-macros", version = "0.1" }
16+
storey-macros = { path = "packages/storey-macros", version = "0.2" }
1717
storey-storage = { path = "packages/storey-storage", version = "0.2" }

packages/cw-storey/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
## [0.6.0] - 2025-04-24
10+
11+
12+
### Added
13+
- add Key trait derive
14+
15+
### Fixed
16+
- [**breaking**] Remove unnecessary derive
917
## [0.4.1] - 2025-02-05
1018

1119

packages/cw-storey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repository = { workspace = true }
66
homepage = { workspace = true }
77
categories = { workspace = true }
88
keywords = { workspace = true }
9-
version = "0.5.0"
9+
version = "0.6.0"
1010
edition = "2021"
1111
license = { workspace = true }
1212

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
## [0.2.0] - 2025-04-24
10+
11+
12+
### Added
13+
- add OwnedKey trait derive
14+
- add Key trait derive
15+
16+
### Fixed
17+
- [**breaking**] Remove unnecessary derive

packages/storey-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "storey-macros"
33
description = "Macros for the storey crate"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
authors.workspace = true
77
license.workspace = true

packages/storey/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
## [0.5.0] - 2025-04-24
10+
11+
12+
### Added
13+
- add OwnedKey trait derive
14+
- add Key trait derive
15+
16+
### Fixed
17+
- [**breaking**] Remove unnecessary derive
18+
19+
### Tests
20+
- test router! errors
921
## [0.4.0] - 2025-02-05
1022

1123

packages/storey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "storey"
33
description = "Storage abstractions for blockchains"
44
readme = "../../README.md"
5-
version = "0.4.0"
5+
version = "0.5.0"
66
edition = "2021"
77
rust-version = "1.77"
88
authors.workspace = true

0 commit comments

Comments
 (0)