Skip to content
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

chore: release #66

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,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-12-18


### 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-12-18


### 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-12-18


### 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-12-18


### 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 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