Skip to content

chore: release #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
8 changes: 8 additions & 0 deletions packages/cw-storey/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion packages/cw-storey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
17 changes: 17 additions & 0 deletions packages/storey-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion packages/storey-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 12 additions & 0 deletions packages/storey/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion packages/storey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down