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

Merged
merged 1 commit into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.2.0] - 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.2.0"
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