Skip to content

Commit 9e139be

Browse files
authored
Merge pull request #93 from scrtlabs/cosmwasm-std-v1.1.11
cosmwasm-std v1.1.11
2 parents 6880cc3 + 1fdd258 commit 9e139be

File tree

14 files changed

+80
-50
lines changed

14 files changed

+80
-50
lines changed

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "LICENSE"
@@ -36,15 +36,15 @@ utils = ["secret-toolkit-utils"]
3636
viewing-key = ["secret-toolkit-viewing-key"]
3737

3838
[dependencies]
39-
secret-toolkit-crypto = { version = "0.9", path = "packages/crypto", optional = true }
40-
secret-toolkit-incubator = { version = "0.9", path = "packages/incubator", optional = true }
41-
secret-toolkit-permit = { version = "0.9", path = "packages/permit", optional = true }
42-
secret-toolkit-serialization = { version = "0.9", path = "packages/serialization", optional = true }
43-
secret-toolkit-snip20 = { version = "0.9", path = "packages/snip20", optional = true }
44-
secret-toolkit-snip721 = { version = "0.9", path = "packages/snip721", optional = true }
45-
secret-toolkit-storage = { version = "0.9", path = "packages/storage", optional = true }
46-
secret-toolkit-utils = { version = "0.9", path = "packages/utils", optional = true }
47-
secret-toolkit-viewing-key = { version = "0.9", path = "packages/viewing_key", optional = true }
39+
secret-toolkit-crypto = { version = "0.10.0", path = "packages/crypto", optional = true }
40+
secret-toolkit-incubator = { version = "0.10.0", path = "packages/incubator", optional = true }
41+
secret-toolkit-permit = { version = "0.10.0", path = "packages/permit", optional = true }
42+
secret-toolkit-serialization = { version = "0.10.0", path = "packages/serialization", optional = true }
43+
secret-toolkit-snip20 = { version = "0.10.0", path = "packages/snip20", optional = true }
44+
secret-toolkit-snip721 = { version = "0.10.0", path = "packages/snip721", optional = true }
45+
secret-toolkit-storage = { version = "0.10.0", path = "packages/storage", optional = true }
46+
secret-toolkit-utils = { version = "0.10.0", path = "packages/utils", optional = true }
47+
secret-toolkit-viewing-key = { version = "0.10.0", path = "packages/viewing_key", optional = true }
4848

4949

5050
[workspace]
@@ -57,7 +57,7 @@ members = ["packages/*"]
5757
[workspace.dependencies]
5858
schemars = { version = "0.8.11" }
5959
serde = { version = "1.0" }
60-
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.1.10", features = [
60+
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.1.11", features = [
6161
"random",
6262
] }
63-
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "1.1.10" }
63+
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "1.1.11" }

Releases.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
## Unreleased
44

5+
## v0.10.0
6+
7+
### Features
8+
9+
- Bumped `cosmwasm-std` version to `v1.1.11` ([#93]).
10+
11+
### Breaking
12+
13+
- Added optional `admin` field to `utils::InitCallback::to_cosmos_msg` ([#93]).
14+
15+
### Bug fixes
16+
17+
- Only padding encrypted attributes in `utils::pad_handle_result` ([#92]).
18+
- Support `backtraces` feature for `KeyMap` and `KeySet` ([#90]).
19+
20+
[#90]: https://github.com/scrtlabs/secret-toolkit/pull/90
21+
[#92]: https://github.com/scrtlabs/secret-toolkit/pull/92
22+
[#93]: https://github.com/scrtlabs/secret-toolkit/pull/93
23+
524
## v0.9.0
625

726
### Features

packages/crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-crypto"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"

packages/crypto/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Add the following to your `cargo.toml` file:
1111

1212
```toml
1313
[dependencies]
14-
secret-toolkit = { version = "0.9.0", features = ["crypto"] }
15-
secret-toolkit-crypto = { version = "0.9.0", features = ["hash", "rand", "ecc-secp256k1"] }
14+
secret-toolkit = { version = "0.10.0", features = ["crypto"] }
15+
secret-toolkit-crypto = { version = "0.10.0", features = ["hash", "rand", "ecc-secp256k1"] }
1616
```
1717

1818
## Example usage

packages/incubator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-incubator"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -16,7 +16,7 @@ all-features = true
1616
[dependencies]
1717
serde = { workspace = true, optional = true }
1818
cosmwasm-std = { workspace = true, optional = true }
19-
secret-toolkit-serialization = { version = "0.9", path = "../serialization", optional = true }
19+
secret-toolkit-serialization = { version = "0.10.0", path = "../serialization", optional = true }
2020

2121
[features]
2222
generational-store = ["secret-toolkit-serialization", "serde", "cosmwasm-std"]

packages/permit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-permit"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -20,6 +20,6 @@ ripemd = { version = "0.1.3", default-features = false }
2020
schemars = { workspace = true }
2121
bech32 = "0.9.1"
2222
remain = "0.2.8"
23-
secret-toolkit-crypto = { version = "0.9.0", path = "../crypto", features = [
23+
secret-toolkit-crypto = { version = "0.10.0", path = "../crypto", features = [
2424
"hash",
2525
] }

packages/serialization/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-serialization"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"

packages/snip20/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-snip20"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -17,4 +17,4 @@ all-features = true
1717
serde = { workspace = true }
1818
schemars = { workspace = true }
1919
cosmwasm-std = { workspace = true }
20-
secret-toolkit-utils = { version = "0.9", path = "../utils" }
20+
secret-toolkit-utils = { version = "0.10.0", path = "../utils" }

packages/snip721/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-snip721"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -17,4 +17,4 @@ all-features = true
1717
serde = { workspace = true }
1818
schemars = { workspace = true }
1919
cosmwasm-std = { workspace = true }
20-
secret-toolkit-utils = { version = "0.9", path = "../utils" }
20+
secret-toolkit-utils = { version = "0.10.0", path = "../utils" }

packages/storage/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-storage"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -17,4 +17,4 @@ all-features = true
1717
serde = { workspace = true }
1818
cosmwasm-std = { workspace = true }
1919
cosmwasm-storage = { workspace = true }
20-
secret-toolkit-serialization = { version = "0.9", path = "../serialization" }
20+
secret-toolkit-serialization = { version = "0.10.0", path = "../serialization" }

0 commit comments

Comments
 (0)