Skip to content

Commit 5d504d1

Browse files
committed
Bump versions to v0.10.1
1 parent 8aa3073 commit 5d504d1

File tree

12 files changed

+34
-28
lines changed

12 files changed

+34
-28
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit"
3-
version = "0.10.0"
3+
version = "0.10.1"
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.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 }
39+
secret-toolkit-crypto = { version = "0.10.1", path = "packages/crypto", optional = true }
40+
secret-toolkit-incubator = { version = "0.10.1", path = "packages/incubator", optional = true }
41+
secret-toolkit-permit = { version = "0.10.1", path = "packages/permit", optional = true }
42+
secret-toolkit-serialization = { version = "0.10.1", path = "packages/serialization", optional = true }
43+
secret-toolkit-snip20 = { version = "0.10.1", path = "packages/snip20", optional = true }
44+
secret-toolkit-snip721 = { version = "0.10.1", path = "packages/snip721", optional = true }
45+
secret-toolkit-storage = { version = "0.10.1", path = "packages/storage", optional = true }
46+
secret-toolkit-utils = { version = "0.10.1", path = "packages/utils", optional = true }
47+
secret-toolkit-viewing-key = { version = "0.10.1", path = "packages/viewing_key", optional = true }
4848

4949

5050
[workspace]

Releases.md

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

33
## Unreleased
44

5+
## v0.10.1
6+
7+
### Bug fixes
8+
9+
- Fixed `Wasm contract requires unsupported import: "env.rustsecp256k1_v0_8_1_context_preallocated_size` error by freezing `cc` version to `1.1.10`.
10+
511
## v0.10.0
612

713
### 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.10.0"
3+
version = "0.10.1"
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.10.0", features = ["crypto"] }
15-
secret-toolkit-crypto = { version = "0.10.0", features = ["hash", "rand", "ecc-secp256k1"] }
14+
secret-toolkit = { version = "0.10.1", features = ["crypto"] }
15+
secret-toolkit-crypto = { version = "0.10.1", 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.10.0"
3+
version = "0.10.1"
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.10.0", path = "../serialization", optional = true }
19+
secret-toolkit-serialization = { version = "0.10.1", 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.10.0"
3+
version = "0.10.1"
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.10.0", path = "../crypto", features = [
23+
secret-toolkit-crypto = { version = "0.10.1", 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.10.0"
3+
version = "0.10.1"
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.10.0"
3+
version = "0.10.1"
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.10.0", path = "../utils" }
20+
secret-toolkit-utils = { version = "0.10.1", 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.10.0"
3+
version = "0.10.1"
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.10.0", path = "../utils" }
20+
secret-toolkit-utils = { version = "0.10.1", 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.10.0"
3+
version = "0.10.1"
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.10.0", path = "../serialization" }
20+
secret-toolkit-serialization = { version = "0.10.1", path = "../serialization" }

packages/utils/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-utils"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"

packages/viewing_key/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-viewing-key"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -20,8 +20,8 @@ base64 = "0.21.0"
2020
subtle = { version = "2.2.3", default-features = false }
2121
cosmwasm-std = { workspace = true }
2222
cosmwasm-storage = { workspace = true }
23-
secret-toolkit-crypto = { version = "0.10.0", path = "../crypto", features = [
23+
secret-toolkit-crypto = { version = "0.10.1", path = "../crypto", features = [
2424
"hash",
2525
"rand",
2626
] }
27-
secret-toolkit-utils = { version = "0.10.0", path = "../utils" }
27+
secret-toolkit-utils = { version = "0.10.1", path = "../utils" }

0 commit comments

Comments
 (0)