Skip to content

Commit 3813672

Browse files
authored
Merge pull request #50 from CosmWasm/release-plz-2024-07-08T10-46-35Z
chore: release
2 parents fc6c065 + ee55a89 commit 3813672

File tree

5 files changed

+57
-13
lines changed

5 files changed

+57
-13
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ categories = ["cryptography::cryptocurrencies"]
1111
keywords = ["CosmWasm"]
1212

1313
[workspace.dependencies]
14-
storey = { path = "packages/storey", version = "0.2" }
14+
storey = { path = "packages/storey", version = "0.3" }
1515
storey-encoding = { path = "packages/storey-encoding", version = "0.1" }
1616
storey-storage = { path = "packages/storey-storage", version = "0.1" }

packages/cw-storey/CHANGELOG.md

+24-6
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,55 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

78
## [Unreleased]
8-
## [0.3.1] - 2024-06-19
99

10+
## [0.4.0] - 2024-09-11
11+
12+
### Added
13+
14+
- add remove to ItemAccess
15+
- add remove entry from map
16+
17+
### Documentation
18+
19+
- fix indentation
20+
21+
## [0.3.1] - 2024-06-19
1022

1123
### Fixed
24+
1225
- make CW integration work with &mut dyn Storage
13-
## [0.3.0] - 2024-06-12
1426

27+
## [0.3.0] - 2024-06-12
1528

1629
### Added
30+
1731
- use msgpack encoding provided by cosmwasm-std
18-
## [0.2.0] - 2024-05-09
1932

33+
## [0.2.0] - 2024-05-09
2034

2135
### Added
36+
2237
- use single-byte keys for top-level containers
2338

2439
### Other
40+
2541
- rename crates to packages
2642

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

2945
### Added
30-
- *(cw-storey)* re-export storey containers
31-
- *(cw-storey)* replace CBOR with MessagePack
46+
47+
- _(cw-storey)_ re-export storey containers
48+
- _(cw-storey)_ replace CBOR with MessagePack
3249

3350
### Other
51+
3452
- add Cargo manifest metadata for crates.io
35-
- *(cw-storey)* add a simple smoke test
53+
- _(cw-storey)_ add a simple smoke test
3654
- implement Cw backend + encoding
3755
- rename crates to storey

packages/cw-storey/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repository = { workspace = true }
66
homepage = { workspace = true }
77
categories = { workspace = true }
88
keywords = { workspace = true }
9-
version = "0.3.1"
9+
version = "0.4.0"
1010
edition = "2021"
1111
license = { workspace = true }
1212

packages/storey/CHANGELOG.md

+30-4
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,59 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

78
## [Unreleased]
8-
## [0.2.1] - 2024-06-19
99

10+
## [0.3.0] - 2024-09-11
1011

1112
### Added
13+
14+
- implement {ItemAccess, ColumnAccess}::get_or
15+
- implement {ItemAccess, ColumnAccess}::try_get
16+
- add Key/OwnedKey impls for more std types
17+
- add remove to ItemAccess
18+
- add remove entry from map
19+
20+
### Fixed
21+
22+
- fix docs inner links
23+
- fix visibility
24+
25+
### Documentation
26+
27+
- document `BoundedIterableAccessor`
28+
- document map key types/trait/assoc types
29+
30+
## [0.2.1] - 2024-06-19
31+
32+
### Added
33+
1234
- add missing IterableStorage impls
13-
## [0.2.0] - 2024-05-09
1435

36+
## [0.2.0] - 2024-05-09
1537

1638
### Added
17-
- *(storey)* return ix on `Column::push`
39+
40+
- _(storey)_ return ix on `Column::push`
1841
- provide typed bounds for iteration
1942
- use single-byte keys for top-level containers
2043

2144
### Fixed
22-
- *(storey)* Column::push bounds checking
45+
46+
- _(storey)_ Column::push bounds checking
2347

2448
### Other
49+
2550
- less awkward associated type names
2651
- rename crates to packages
2752

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

3055
### Other
56+
3157
- add Cargo manifest metadata for crates.io
3258
- implement Cw backend + encoding
3359
- rename crates to storey

packages/storey/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "storey"
33
description = "Storage abstractions for blockchains"
44
readme = "../../README.md"
5-
version = "0.2.1"
5+
version = "0.3.0"
66
edition = "2021"
77
rust-version = "1.65" # https://caniuse.rs/features/generic_associated_types
88
authors.workspace = true

0 commit comments

Comments
 (0)