Skip to content

Commit 3bb12b8

Browse files
committed
bump version to v0.10.3
1 parent e8d7e61 commit 3bb12b8

File tree

13 files changed

+37
-31
lines changed

13 files changed

+37
-31
lines changed

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret-toolkit"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "LICENSE"
@@ -37,16 +37,16 @@ viewing-key = ["secret-toolkit-viewing-key"]
3737
notification = ["secret-toolkit-notification"]
3838

3939
[dependencies]
40-
secret-toolkit-crypto = { version = "0.10.2", path = "packages/crypto", optional = true }
41-
secret-toolkit-incubator = { version = "0.10.2", path = "packages/incubator", optional = true }
42-
secret-toolkit-permit = { version = "0.10.2", path = "packages/permit", optional = true }
43-
secret-toolkit-serialization = { version = "0.10.2", path = "packages/serialization", optional = true }
44-
secret-toolkit-snip20 = { version = "0.10.2", path = "packages/snip20", optional = true }
45-
secret-toolkit-snip721 = { version = "0.10.2", path = "packages/snip721", optional = true }
46-
secret-toolkit-storage = { version = "0.10.2", path = "packages/storage", optional = true }
47-
secret-toolkit-utils = { version = "0.10.2", path = "packages/utils", optional = true }
48-
secret-toolkit-viewing-key = { version = "0.10.2", path = "packages/viewing_key", optional = true }
49-
secret-toolkit-notification = { version = "0.10.2", path = "packages/notification", optional = true }
40+
secret-toolkit-crypto = { version = "0.10.3", path = "packages/crypto", optional = true }
41+
secret-toolkit-incubator = { version = "0.10.3", path = "packages/incubator", optional = true }
42+
secret-toolkit-permit = { version = "0.10.3", path = "packages/permit", optional = true }
43+
secret-toolkit-serialization = { version = "0.10.3", path = "packages/serialization", optional = true }
44+
secret-toolkit-snip20 = { version = "0.10.3", path = "packages/snip20", optional = true }
45+
secret-toolkit-snip721 = { version = "0.10.3", path = "packages/snip721", optional = true }
46+
secret-toolkit-storage = { version = "0.10.3", path = "packages/storage", optional = true }
47+
secret-toolkit-utils = { version = "0.10.3", path = "packages/utils", optional = true }
48+
secret-toolkit-viewing-key = { version = "0.10.3", path = "packages/viewing_key", optional = true }
49+
secret-toolkit-notification = { version = "0.10.3", path = "packages/notification", optional = true }
5050

5151
[workspace]
5252
members = ["packages/*"]

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.3
6+
7+
### Bug fixes
8+
9+
- fix out of bounds bug at get_at function in append_store
10+
511
## v0.10.2
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.2"
3+
version = "0.10.3"
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.2", features = ["crypto"] }
15-
secret-toolkit-crypto = { version = "0.10.2", features = ["hash", "rand", "ecc-secp256k1"] }
14+
secret-toolkit = { version = "0.10.3", features = ["crypto"] }
15+
secret-toolkit-crypto = { version = "0.10.3", 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.2"
3+
version = "0.10.3"
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.2", path = "../serialization", optional = true }
19+
secret-toolkit-serialization = { version = "0.10.3", path = "../serialization", optional = true }
2020

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

packages/notification/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-notification"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
edition = "2021"
55
authors = ["darwinzer0","blake-regalia"]
66
license-file = "../../LICENSE"
@@ -30,6 +30,6 @@ primitive-types = { version = "0.12.2", default-features = false }
3030
hex = "0.4.3"
3131
minicbor = "0.25.1"
3232

33-
secret-toolkit-crypto = { version = "0.10.2", path = "../crypto", features = [
33+
secret-toolkit-crypto = { version = "0.10.3", path = "../crypto", features = [
3434
"hash", "hkdf"
3535
] }

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.2"
3+
version = "0.10.3"
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.2", path = "../crypto", features = [
23+
secret-toolkit-crypto = { version = "0.10.3", 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.2"
3+
version = "0.10.3"
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.2"
3+
version = "0.10.3"
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.2", path = "../utils" }
20+
secret-toolkit-utils = { version = "0.10.3", 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.2"
3+
version = "0.10.3"
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.2", path = "../utils" }
20+
secret-toolkit-utils = { version = "0.10.3", 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.2"
3+
version = "0.10.3"
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.2", path = "../serialization" }
20+
secret-toolkit-serialization = { version = "0.10.3", 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.2"
3+
version = "0.10.3"
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.2"
3+
version = "0.10.3"
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.2", path = "../crypto", features = [
23+
secret-toolkit-crypto = { version = "0.10.3", path = "../crypto", features = [
2424
"hash",
2525
"rand",
2626
] }
27-
secret-toolkit-utils = { version = "0.10.2", path = "../utils" }
27+
secret-toolkit-utils = { version = "0.10.3", path = "../utils" }

0 commit comments

Comments
 (0)