Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed May 9, 2024
1 parent 316d151 commit deb9d69
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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.1" }
storey = { path = "packages/storey", version = "0.2" }
storey-encoding = { path = "packages/storey-encoding", version = "0.1" }
storey-storage = { path = "packages/storey-storage", version = "0.1" }
8 changes: 8 additions & 0 deletions packages/cw-storey/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,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.1.1] - 2024-05-09


### Added
- use single-byte keys for top-level containers

### Other
- rename crates to packages

## [0.1.0](https://github.com/CosmWasm/storey/releases/tag/cw-storey-v0.1.0) - 2024-03-22

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

Expand Down
12 changes: 12 additions & 0 deletions packages/storey-encoding/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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.1.1] - 2024-05-09


### Other
- rename crates to packages
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.0"
version = "0.1.1"
edition = "2021"
authors.workspace = true
license.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions packages/storey-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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.1.1] - 2024-05-09


### Other
- rename crates to packages
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.0"
version = "0.1.1"
edition = "2021"
authors.workspace = true
license.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions packages/storey/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ 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-05-09


### Added
- *(storey)* return ix on `Column::push`
- provide typed bounds for iteration
- use single-byte keys for top-level containers

### Fixed
- *(storey)* Column::push bounds checking

### Other
- less awkward associated type names
- rename crates to packages

## [0.1.0](https://github.com/CosmWasm/storey/releases/tag/storey-v0.1.0) - 2024-03-22

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.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.65" # https://caniuse.rs/features/generic_associated_types
authors.workspace = true
Expand Down

0 comments on commit deb9d69

Please sign in to comment.