From 4ed4e78371244b761eec842532c41d6045642ca0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:57:53 +0000 Subject: [PATCH] chore: release --- Cargo.toml | 4 ++-- packages/cw-storey/CHANGELOG.md | 5 +++++ packages/cw-storey/Cargo.toml | 2 +- packages/storey-encoding/CHANGELOG.md | 5 +++++ packages/storey-encoding/Cargo.toml | 2 +- packages/storey-storage/CHANGELOG.md | 5 +++++ packages/storey-storage/Cargo.toml | 2 +- packages/storey/CHANGELOG.md | 15 +++++++++++++++ packages/storey/Cargo.toml | 2 +- 9 files changed, 36 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 85ba945..1d9111f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/packages/cw-storey/CHANGELOG.md b/packages/cw-storey/CHANGELOG.md index 94090ac..163ed6a 100644 --- a/packages/cw-storey/CHANGELOG.md +++ b/packages/cw-storey/CHANGELOG.md @@ -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 diff --git a/packages/cw-storey/Cargo.toml b/packages/cw-storey/Cargo.toml index e2edaf6..7f50fad 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.4.0" +version = "0.4.1" edition = "2021" license = { workspace = true } diff --git a/packages/storey-encoding/CHANGELOG.md b/packages/storey-encoding/CHANGELOG.md index dfc099d..b5902f7 100644 --- a/packages/storey-encoding/CHANGELOG.md +++ b/packages/storey-encoding/CHANGELOG.md @@ -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 diff --git a/packages/storey-encoding/Cargo.toml b/packages/storey-encoding/Cargo.toml index 0b6b95d..cf34d0e 100644 --- a/packages/storey-encoding/Cargo.toml +++ b/packages/storey-encoding/Cargo.toml @@ -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 diff --git a/packages/storey-storage/CHANGELOG.md b/packages/storey-storage/CHANGELOG.md index dfc099d..e8dc881 100644 --- a/packages/storey-storage/CHANGELOG.md +++ b/packages/storey-storage/CHANGELOG.md @@ -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 diff --git a/packages/storey-storage/Cargo.toml b/packages/storey-storage/Cargo.toml index 091414b..9b42cfd 100644 --- a/packages/storey-storage/Cargo.toml +++ b/packages/storey-storage/Cargo.toml @@ -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 diff --git a/packages/storey/CHANGELOG.md b/packages/storey/CHANGELOG.md index cdd9529..045c6d7 100644 --- a/packages/storey/CHANGELOG.md +++ b/packages/storey/CHANGELOG.md @@ -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 diff --git a/packages/storey/Cargo.toml b/packages/storey/Cargo.toml index 87c2055..c403bea 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.3.0" +version = "0.4.0" edition = "2021" rust-version = "1.77" authors.workspace = true