Skip to content

Commit 49719f4

Browse files
authored
release: bump starknet to 0.9.0 (and deps) (#537)
1 parent 0857bd6 commit 49719f4

File tree

9 files changed

+31
-31
lines changed

9 files changed

+31
-31
lines changed

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -36,12 +36,12 @@ all-features = true
3636
[dependencies]
3737
starknet-ff = { version = "0.3.6", path = "./starknet-ff", default-features = false }
3838
starknet-crypto = { version = "0.6.1", path = "./starknet-crypto" }
39-
starknet-core = { version = "0.8.0", path = "./starknet-core", default-features = false }
40-
starknet-providers = { version = "0.8.0", path = "./starknet-providers" }
41-
starknet-contract = { version = "0.7.0", path = "./starknet-contract" }
42-
starknet-signers = { version = "0.6.0", path = "./starknet-signers" }
43-
starknet-accounts = { version = "0.7.0", path = "./starknet-accounts" }
44-
starknet-macros = { version = "0.1.5", path = "./starknet-macros" }
39+
starknet-core = { version = "0.9.0", path = "./starknet-core", default-features = false }
40+
starknet-providers = { version = "0.9.0", path = "./starknet-providers" }
41+
starknet-contract = { version = "0.8.0", path = "./starknet-contract" }
42+
starknet-signers = { version = "0.7.0", path = "./starknet-signers" }
43+
starknet-accounts = { version = "0.8.0", path = "./starknet-accounts" }
44+
starknet-macros = { version = "0.1.6", path = "./starknet-macros" }
4545

4646
[dev-dependencies]
4747
serde_json = "1.0.74"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To use the crate from [crates.io](https://crates.io/crates/starknet), add the fo
2020

2121
```toml
2222
[dependencies]
23-
starknet = "0.8.0"
23+
starknet = "0.9.0"
2424
```
2525

2626
Note that the [crates.io version](https://crates.io/crates/starknet) might be outdated. You may want to use the library directly from GitHub for all the latest features and fixes:

starknet-accounts/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-accounts"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -14,9 +14,9 @@ keywords = ["ethereum", "starknet", "web3"]
1414
exclude = ["test-data/**"]
1515

1616
[dependencies]
17-
starknet-core = { version = "0.8.0", path = "../starknet-core" }
18-
starknet-providers = { version = "0.8.0", path = "../starknet-providers" }
19-
starknet-signers = { version = "0.6.0", path = "../starknet-signers" }
17+
starknet-core = { version = "0.9.0", path = "../starknet-core" }
18+
starknet-providers = { version = "0.9.0", path = "../starknet-providers" }
19+
starknet-signers = { version = "0.7.0", path = "../starknet-signers" }
2020
async-trait = "0.1.68"
2121
auto_impl = "1.0.1"
2222
thiserror = "1.0.40"

starknet-contract/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-contract"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -14,16 +14,16 @@ keywords = ["ethereum", "starknet", "web3"]
1414
exclude = ["test-data/**"]
1515

1616
[dependencies]
17-
starknet-core = { version = "0.8.0", path = "../starknet-core" }
18-
starknet-providers = { version = "0.8.0", path = "../starknet-providers" }
19-
starknet-accounts = { version = "0.7.0", path = "../starknet-accounts" }
17+
starknet-core = { version = "0.9.0", path = "../starknet-core" }
18+
starknet-providers = { version = "0.9.0", path = "../starknet-providers" }
19+
starknet-accounts = { version = "0.8.0", path = "../starknet-accounts" }
2020
serde = { version = "1.0.160", features = ["derive"] }
2121
serde_json = "1.0.96"
2222
serde_with = "2.3.2"
2323
thiserror = "1.0.40"
2424

2525
[dev-dependencies]
2626
rand = { version = "0.8.5", features=["std_rng"] }
27-
starknet-signers = { version = "0.6.0", path = "../starknet-signers" }
27+
starknet-signers = { version = "0.7.0", path = "../starknet-signers" }
2828
tokio = { version = "1.27.0", features = ["full"] }
2929
url = "2.3.1"

starknet-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-core"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"

starknet-macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-macros"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -16,7 +16,7 @@ keywords = ["ethereum", "starknet", "web3"]
1616
proc-macro = true
1717

1818
[dependencies]
19-
starknet-core = { version = "0.8.0", path = "../starknet-core" }
19+
starknet-core = { version = "0.9.0", path = "../starknet-core" }
2020
syn = "2.0.15"
2121

2222
[features]

starknet-providers/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-providers"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"]
1414
exclude = ["test-data/**"]
1515

1616
[dependencies]
17-
starknet-core = { version = "0.8.0", path = "../starknet-core" }
17+
starknet-core = { version = "0.9.0", path = "../starknet-core" }
1818
async-trait = "0.1.68"
1919
auto_impl = "1.0.1"
2020
ethereum-types = "0.14.1"

starknet-signers/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-signers"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -13,7 +13,7 @@ Starknet signer implementations
1313
keywords = ["ethereum", "starknet", "web3"]
1414

1515
[dependencies]
16-
starknet-core = { version = "0.8.0", path = "../starknet-core" }
16+
starknet-core = { version = "0.9.0", path = "../starknet-core" }
1717
starknet-crypto = { version = "0.6.1", path = "../starknet-crypto" }
1818
async-trait = "0.1.68"
1919
auto_impl = "1.0.1"

0 commit comments

Comments
 (0)