From 980db5546c1e784e15091260d4ee908e19ad8dad Mon Sep 17 00:00:00 2001 From: TomL94 Date: Sun, 9 Apr 2023 13:09:25 +0300 Subject: [PATCH] v0.8.1 release --- Cargo.toml | 2 +- Releases.md | 7 +++++++ packages/crypto/Cargo.toml | 11 ++++++++--- packages/crypto/Readme.md | 4 ++-- packages/incubator/Cargo.toml | 2 +- packages/permit/Cargo.toml | 4 ++-- packages/serialization/Cargo.toml | 2 +- packages/snip20/Cargo.toml | 2 +- packages/snip721/Cargo.toml | 2 +- packages/storage/Cargo.toml | 4 ++-- packages/utils/Cargo.toml | 6 +++--- packages/viewing_key/Cargo.toml | 4 ++-- 12 files changed, 31 insertions(+), 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 21fe628..b6f910c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "LICENSE" diff --git a/Releases.md b/Releases.md index 2e938d4..700a524 100644 --- a/Releases.md +++ b/Releases.md @@ -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)), diff --git a/packages/crypto/Cargo.toml b/packages/crypto/Cargo.toml index ea0fcca..c04551a 100644 --- a/packages/crypto/Cargo.toml +++ b/packages/crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-crypto" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" @@ -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" diff --git a/packages/crypto/Readme.md b/packages/crypto/Readme.md index 3b0b246..da26b4e 100644 --- a/packages/crypto/Readme.md +++ b/packages/crypto/Readme.md @@ -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 diff --git a/packages/incubator/Cargo.toml b/packages/incubator/Cargo.toml index a9b0e78..87556bd 100644 --- a/packages/incubator/Cargo.toml +++ b/packages/incubator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-incubator" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" diff --git a/packages/permit/Cargo.toml b/packages/permit/Cargo.toml index b6e8c2b..a64a0aa 100644 --- a/packages/permit/Cargo.toml +++ b/packages/permit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-permit" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" @@ -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", ] } diff --git a/packages/serialization/Cargo.toml b/packages/serialization/Cargo.toml index afeac67..e7a9067 100644 --- a/packages/serialization/Cargo.toml +++ b/packages/serialization/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-serialization" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" diff --git a/packages/snip20/Cargo.toml b/packages/snip20/Cargo.toml index 7061300..ff4195b 100644 --- a/packages/snip20/Cargo.toml +++ b/packages/snip20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-snip20" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" diff --git a/packages/snip721/Cargo.toml b/packages/snip721/Cargo.toml index 17a0812..1b231b5 100644 --- a/packages/snip721/Cargo.toml +++ b/packages/snip721/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-snip721" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" diff --git a/packages/storage/Cargo.toml b/packages/storage/Cargo.toml index 614f08b..4991f0b 100644 --- a/packages/storage/Cargo.toml +++ b/packages/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-storage" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" @@ -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" } diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index e41b20e..3c7a16e 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-utils" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" @@ -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 } diff --git a/packages/viewing_key/Cargo.toml b/packages/viewing_key/Cargo.toml index 74df825..3e2f1fa 100644 --- a/packages/viewing_key/Cargo.toml +++ b/packages/viewing_key/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secret-toolkit-viewing-key" -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["SCRT Labs "] license-file = "../../LICENSE" @@ -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 }