Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 14, 2024
1 parent f8881b7 commit e697125
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
5 changes: 5 additions & 0 deletions packages/cw-storey/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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.4.0"
version = "0.4.1"
edition = "2021"
license = { workspace = true }

Expand Down
5 changes: 5 additions & 0 deletions packages/storey-encoding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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


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


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

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.3.0"
version = "0.4.0"
edition = "2021"
rust-version = "1.77"
authors.workspace = true
Expand Down

0 comments on commit e697125

Please sign in to comment.