Skip to content

Commit 7f0390e

Browse files
authored
Merge pull request #85 from scrtlabs/0.8.1-release
v0.8.1 release
2 parents 9f04a2e + 980db55 commit 7f0390e

File tree

12 files changed

+31
-19
lines changed

12 files changed

+31
-19
lines changed

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"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "LICENSE"

Releases.md

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

33
## Unreleased
44

5+
## v0.8.1
6+
7+
### Bug fixes
8+
59
- Fixed a bug in `Keymap` and `Keyset` ([#84](https://github.com/scrtlabs/secret-toolkit/pull/84)).
10+
11+
### Features
12+
613
- SecureItem - storage access pattern obfuscating Item ([#82](https://github.com/scrtlabs/secret-toolkit/pull/82)).
714
- Change the internal `rng` field of the `Prng` struct to be public ([#81](https://github.com/scrtlabs/secret-toolkit/pull/81)),
815

packages/crypto/Cargo.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit-crypto"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -22,9 +22,14 @@ rand = ["rand_chacha", "rand_core"]
2222
rand_core = { version = "0.6.4", default-features = false, optional = true }
2323
rand_chacha = { version = "0.3.1", default-features = false, optional = true }
2424
sha2 = { version = "0.10.6", default-features = false, optional = true }
25-
secp256k1 = { version = "0.24.1", default-features = false, features=["alloc"], optional = true }
25+
secp256k1 = { version = "0.24.1", default-features = false, features = [
26+
"alloc",
27+
], optional = true }
2628
cosmwasm-std = { workspace = true }
2729

2830
[dev-dependencies]
29-
secp256k1 = { version = "0.24.1", default-features = false, features=["alloc", "rand-std"] }
31+
secp256k1 = { version = "0.24.1", default-features = false, features = [
32+
"alloc",
33+
"rand-std",
34+
] }
3035
base64 = "0.21.0"

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.8.0", features = ["crypto"] }
15-
secret-toolkit-crypto = { version = "0.8.0", features = ["hash", "rand", "ecc-secp256k1"] }
14+
secret-toolkit = { version = "0.8.1", features = ["crypto"] }
15+
secret-toolkit-crypto = { version = "0.8.1", features = ["hash", "rand", "ecc-secp256k1"] }
1616
```
1717

1818
## Example usage

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

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.8.0"
3+
version = "0.8.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.2"
23-
secret-toolkit-crypto = { version = "0.8.0", path = "../crypto", features = [
23+
secret-toolkit-crypto = { version = "0.8.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.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"

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

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

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.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -15,6 +15,6 @@ all-features = true
1515

1616
[dependencies]
1717
serde = { workspace = true }
18-
cosmwasm-std = { workspace = true }
18+
cosmwasm-std = { workspace = true }
1919
cosmwasm-storage = { workspace = true }
2020
secret-toolkit-serialization = { version = "0.8", path = "../serialization" }

packages/utils/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-utils"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -14,7 +14,7 @@ keywords = ["secret-network", "secret-contracts", "secret-toolkit"]
1414
all-features = true
1515

1616
[dependencies]
17-
serde = { workspace = true }
17+
serde = { workspace = true }
1818
schemars = { workspace = true }
19-
cosmwasm-std = { workspace = true }
19+
cosmwasm-std = { workspace = true }
2020
cosmwasm-storage = { workspace = true }

packages/viewing_key/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-viewing-key"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"
@@ -14,7 +14,7 @@ keywords = ["secret-network", "secret-contracts", "secret-toolkit"]
1414
all-features = true
1515

1616
[dependencies]
17-
serde = { workspace = true }
17+
serde = { workspace = true }
1818
schemars = { workspace = true }
1919
base64 = "0.21.0"
2020
subtle = { version = "2.2.3", default-features = false }

0 commit comments

Comments
 (0)