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

Merged
merged 2 commits into from
Sep 11, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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.2" }
storey = { path = "packages/storey", version = "0.3" }
storey-encoding = { path = "packages/storey-encoding", version = "0.1" }
storey-storage = { path = "packages/storey-storage", version = "0.1" }
30 changes: 24 additions & 6 deletions packages/cw-storey/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,55 @@
# 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.3.1] - 2024-06-19

## [0.4.0] - 2024-09-11

### Added

- add remove to ItemAccess
- add remove entry from map

### Documentation

- fix indentation

## [0.3.1] - 2024-06-19

### Fixed

- make CW integration work with &mut dyn Storage
## [0.3.0] - 2024-06-12

## [0.3.0] - 2024-06-12

### Added

- use msgpack encoding provided by cosmwasm-std
## [0.2.0] - 2024-05-09

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

### Added
- *(cw-storey)* re-export storey containers
- *(cw-storey)* replace CBOR with MessagePack

- _(cw-storey)_ re-export storey containers
- _(cw-storey)_ replace CBOR with MessagePack

### Other

- add Cargo manifest metadata for crates.io
- *(cw-storey)* add a simple smoke test
- _(cw-storey)_ add a simple smoke test
- implement Cw backend + encoding
- rename crates to storey
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.3.1"
version = "0.4.0"
edition = "2021"
license = { workspace = true }

Expand Down
34 changes: 30 additions & 4 deletions packages/storey/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,59 @@
# 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.2.1] - 2024-06-19

## [0.3.0] - 2024-09-11

### Added

- implement {ItemAccess, ColumnAccess}::get_or
- implement {ItemAccess, ColumnAccess}::try_get
- add Key/OwnedKey impls for more std types
- add remove to ItemAccess
- add remove entry from map

### Fixed

- fix docs inner links
- fix visibility

### Documentation

- document `BoundedIterableAccessor`
- document map key types/trait/assoc types

## [0.2.1] - 2024-06-19

### Added

- add missing IterableStorage impls
## [0.2.0] - 2024-05-09

## [0.2.0] - 2024-05-09

### Added
- *(storey)* return ix on `Column::push`

- _(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

- _(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

### Other

- add Cargo manifest metadata for crates.io
- implement Cw backend + encoding
- rename crates to storey
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.2.1"
version = "0.3.0"
edition = "2021"
rust-version = "1.65" # https://caniuse.rs/features/generic_associated_types
authors.workspace = true
Expand Down
Loading