Skip to content

Commit 725aca3

Browse files
committed
bumped versions of all packages to 0.8.0
1 parent 0ea873d commit 725aca3

File tree

11 files changed

+28
-28
lines changed

11 files changed

+28
-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.7.0"
3+
version = "0.8.0"
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.7", path = "packages/crypto", optional = true }
40-
secret-toolkit-incubator = { version = "0.7", path = "packages/incubator", optional = true }
41-
secret-toolkit-permit = { version = "0.7", path = "packages/permit", optional = true }
42-
secret-toolkit-serialization = { version = "0.7", path = "packages/serialization", optional = true }
43-
secret-toolkit-snip20 = { version = "0.7", path = "packages/snip20", optional = true }
44-
secret-toolkit-snip721 = { version = "0.7", path = "packages/snip721", optional = true }
45-
secret-toolkit-storage = { version = "0.7", path = "packages/storage", optional = true }
46-
secret-toolkit-utils = { version = "0.7", path = "packages/utils", optional = true }
47-
secret-toolkit-viewing-key = { version = "0.7", path = "packages/viewing_key", optional = true }
39+
secret-toolkit-crypto = { version = "0.8", path = "packages/crypto", optional = true }
40+
secret-toolkit-incubator = { version = "0.8", path = "packages/incubator", optional = true }
41+
secret-toolkit-permit = { version = "0.8", path = "packages/permit", optional = true }
42+
secret-toolkit-serialization = { version = "0.8", path = "packages/serialization", optional = true }
43+
secret-toolkit-snip20 = { version = "0.8", path = "packages/snip20", optional = true }
44+
secret-toolkit-snip721 = { version = "0.8", path = "packages/snip721", optional = true }
45+
secret-toolkit-storage = { version = "0.8", path = "packages/storage", optional = true }
46+
secret-toolkit-utils = { version = "0.8", path = "packages/utils", optional = true }
47+
secret-toolkit-viewing-key = { version = "0.8", path = "packages/viewing_key", optional = true }
4848

4949

5050
[workspace]

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.7.0"
3+
version = "0.8.0"
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.7.0", features = ["crypto"] }
15-
secret-toolkit-crypto = { version = "0.7.0", features = ["hash", "rand", "ecc-secp256k1"] }
14+
secret-toolkit = { version = "0.8.0", features = ["crypto"] }
15+
secret-toolkit-crypto = { version = "0.8.0", 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.7.0"
3+
version = "0.8.0"
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.7", path = "../serialization", optional = true }
19+
secret-toolkit-serialization = { version = "0.8", 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.7.0"
3+
version = "0.8.0"
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.7.0", path = "../crypto", features = [
23+
secret-toolkit-crypto = { version = "0.8.0", 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.7.0"
3+
version = "0.8.0"
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.7.0"
3+
version = "0.8.0"
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.7", path = "../utils" }
20+
secret-toolkit-utils = { version = "0.8", 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.7.0"
3+
version = "0.8.0"
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.7", path = "../utils" }
20+
secret-toolkit-utils = { version = "0.8", 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.7.0"
3+
version = "0.8.0"
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.7", path = "../serialization" }
20+
secret-toolkit-serialization = { version = "0.8", 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.7.0"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = ["SCRT Labs <[email protected]>"]
66
license-file = "../../LICENSE"

0 commit comments

Comments
 (0)