Skip to content

Commit

Permalink
Merge pull request #85 from scrtlabs/0.8.1-release
Browse files Browse the repository at this point in the history
v0.8.1 release
  • Loading branch information
toml01 authored Apr 9, 2023
2 parents 9f04a2e + 980db55 commit 7f0390e
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "LICENSE"
Expand Down
7 changes: 7 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@

## Unreleased

## v0.8.1

### Bug fixes

- Fixed a bug in `Keymap` and `Keyset` ([#84](https://github.com/scrtlabs/secret-toolkit/pull/84)).

### Features

- SecureItem - storage access pattern obfuscating Item ([#82](https://github.com/scrtlabs/secret-toolkit/pull/82)).
- Change the internal `rng` field of the `Prng` struct to be public ([#81](https://github.com/scrtlabs/secret-toolkit/pull/81)),

Expand Down
11 changes: 8 additions & 3 deletions packages/crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-crypto"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand All @@ -22,9 +22,14 @@ rand = ["rand_chacha", "rand_core"]
rand_core = { version = "0.6.4", default-features = false, optional = true }
rand_chacha = { version = "0.3.1", default-features = false, optional = true }
sha2 = { version = "0.10.6", default-features = false, optional = true }
secp256k1 = { version = "0.24.1", default-features = false, features=["alloc"], optional = true }
secp256k1 = { version = "0.24.1", default-features = false, features = [
"alloc",
], optional = true }
cosmwasm-std = { workspace = true }

[dev-dependencies]
secp256k1 = { version = "0.24.1", default-features = false, features=["alloc", "rand-std"] }
secp256k1 = { version = "0.24.1", default-features = false, features = [
"alloc",
"rand-std",
] }
base64 = "0.21.0"
4 changes: 2 additions & 2 deletions packages/crypto/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Add the following to your `cargo.toml` file:

```toml
[dependencies]
secret-toolkit = { version = "0.8.0", features = ["crypto"] }
secret-toolkit-crypto = { version = "0.8.0", features = ["hash", "rand", "ecc-secp256k1"] }
secret-toolkit = { version = "0.8.1", features = ["crypto"] }
secret-toolkit-crypto = { version = "0.8.1", features = ["hash", "rand", "ecc-secp256k1"] }
```

## Example usage
Expand Down
2 changes: 1 addition & 1 deletion packages/incubator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-incubator"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand Down
4 changes: 2 additions & 2 deletions packages/permit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-permit"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand All @@ -20,6 +20,6 @@ ripemd = { version = "0.1.3", default-features = false }
schemars = { workspace = true }
bech32 = "0.9.1"
remain = "0.2.2"
secret-toolkit-crypto = { version = "0.8.0", path = "../crypto", features = [
secret-toolkit-crypto = { version = "0.8.1", path = "../crypto", features = [
"hash",
] }
2 changes: 1 addition & 1 deletion packages/serialization/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-serialization"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion packages/snip20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-snip20"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion packages/snip721/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-snip721"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand Down
4 changes: 2 additions & 2 deletions packages/storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-storage"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand All @@ -15,6 +15,6 @@ all-features = true

[dependencies]
serde = { workspace = true }
cosmwasm-std = { workspace = true }
cosmwasm-std = { workspace = true }
cosmwasm-storage = { workspace = true }
secret-toolkit-serialization = { version = "0.8", path = "../serialization" }
6 changes: 3 additions & 3 deletions packages/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-utils"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand All @@ -14,7 +14,7 @@ keywords = ["secret-network", "secret-contracts", "secret-toolkit"]
all-features = true

[dependencies]
serde = { workspace = true }
serde = { workspace = true }
schemars = { workspace = true }
cosmwasm-std = { workspace = true }
cosmwasm-std = { workspace = true }
cosmwasm-storage = { workspace = true }
4 changes: 2 additions & 2 deletions packages/viewing_key/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-viewing-key"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["SCRT Labs <info@scrtlabs.com>"]
license-file = "../../LICENSE"
Expand All @@ -14,7 +14,7 @@ keywords = ["secret-network", "secret-contracts", "secret-toolkit"]
all-features = true

[dependencies]
serde = { workspace = true }
serde = { workspace = true }
schemars = { workspace = true }
base64 = "0.21.0"
subtle = { version = "2.2.3", default-features = false }
Expand Down

0 comments on commit 7f0390e

Please sign in to comment.