File tree 5 files changed +57
-13
lines changed
5 files changed +57
-13
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ categories = ["cryptography::cryptocurrencies"]
11
11
keywords = [" CosmWasm" ]
12
12
13
13
[workspace .dependencies ]
14
- storey = { path = " packages/storey" , version = " 0.2 " }
14
+ storey = { path = " packages/storey" , version = " 0.3 " }
15
15
storey-encoding = { path = " packages/storey-encoding" , version = " 0.1" }
16
16
storey-storage = { path = " packages/storey-storage" , version = " 0.1" }
Original file line number Diff line number Diff line change 1
1
# Changelog
2
+
2
3
All notable changes to this project will be documented in this file.
3
4
4
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
7
7
8
## [ Unreleased]
8
- ## [ 0.3.1] - 2024-06-19
9
9
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
10
22
11
23
### Fixed
24
+
12
25
- make CW integration work with &mut dyn Storage
13
- ## [ 0.3.0] - 2024-06-12
14
26
27
+ ## [ 0.3.0] - 2024-06-12
15
28
16
29
### Added
30
+
17
31
- use msgpack encoding provided by cosmwasm-std
18
- ## [ 0.2.0] - 2024-05-09
19
32
33
+ ## [ 0.2.0] - 2024-05-09
20
34
21
35
### Added
36
+
22
37
- use single-byte keys for top-level containers
23
38
24
39
### Other
40
+
25
41
- rename crates to packages
26
42
27
43
## [ 0.1.0] ( https://github.com/CosmWasm/storey/releases/tag/cw-storey-v0.1.0 ) - 2024-03-22
28
44
29
45
### 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
32
49
33
50
### Other
51
+
34
52
- add Cargo manifest metadata for crates.io
35
- - * (cw-storey)* add a simple smoke test
53
+ - _ (cw-storey)_ add a simple smoke test
36
54
- implement Cw backend + encoding
37
55
- rename crates to storey
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ repository = { workspace = true }
6
6
homepage = { workspace = true }
7
7
categories = { workspace = true }
8
8
keywords = { workspace = true }
9
- version = " 0.3.1 "
9
+ version = " 0.4.0 "
10
10
edition = " 2021"
11
11
license = { workspace = true }
12
12
Original file line number Diff line number Diff line change 1
1
# Changelog
2
+
2
3
All notable changes to this project will be documented in this file.
3
4
4
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
7
7
8
## [ Unreleased]
8
- ## [ 0.2.1] - 2024-06-19
9
9
10
+ ## [ 0.3.0] - 2024-09-11
10
11
11
12
### 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
+
12
34
- add missing IterableStorage impls
13
- ## [ 0.2.0] - 2024-05-09
14
35
36
+ ## [ 0.2.0] - 2024-05-09
15
37
16
38
### Added
17
- - * (storey)* return ix on ` Column::push `
39
+
40
+ - _ (storey)_ return ix on ` Column::push `
18
41
- provide typed bounds for iteration
19
42
- use single-byte keys for top-level containers
20
43
21
44
### Fixed
22
- - * (storey)* Column::push bounds checking
45
+
46
+ - _ (storey)_ Column::push bounds checking
23
47
24
48
### Other
49
+
25
50
- less awkward associated type names
26
51
- rename crates to packages
27
52
28
53
## [ 0.1.0] ( https://github.com/CosmWasm/storey/releases/tag/storey-v0.1.0 ) - 2024-03-22
29
54
30
55
### Other
56
+
31
57
- add Cargo manifest metadata for crates.io
32
58
- implement Cw backend + encoding
33
59
- rename crates to storey
Original file line number Diff line number Diff line change 2
2
name = " storey"
3
3
description = " Storage abstractions for blockchains"
4
4
readme = " ../../README.md"
5
- version = " 0.2.1 "
5
+ version = " 0.3.0 "
6
6
edition = " 2021"
7
7
rust-version = " 1.65" # https://caniuse.rs/features/generic_associated_types
8
8
authors.workspace = true
You can’t perform that action at this time.
0 commit comments