Skip to content

Commit ee9a5cd

Browse files
authored
release: bump starknet to 0.12.0 (and deps) (#655)
1 parent c18f777 commit ee9a5cd

File tree

11 files changed

+41
-41
lines changed

11 files changed

+41
-41
lines changed

Cargo.lock

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

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -32,17 +32,17 @@ members = [
3232
all-features = true
3333

3434
[dependencies]
35-
starknet-crypto = { version = "0.7.1", path = "./starknet-crypto" }
36-
starknet-core = { version = "0.11.1", path = "./starknet-core", default-features = false }
37-
starknet-providers = { version = "0.11.0", path = "./starknet-providers" }
38-
starknet-contract = { version = "0.10.0", path = "./starknet-contract" }
39-
starknet-signers = { version = "0.9.0", path = "./starknet-signers" }
40-
starknet-accounts = { version = "0.10.0", path = "./starknet-accounts" }
41-
starknet-macros = { version = "0.2.0", path = "./starknet-macros" }
35+
starknet-crypto = { version = "0.7.2", path = "./starknet-crypto" }
36+
starknet-core = { version = "0.12.0", path = "./starknet-core", default-features = false }
37+
starknet-providers = { version = "0.12.0", path = "./starknet-providers" }
38+
starknet-contract = { version = "0.11.0", path = "./starknet-contract" }
39+
starknet-signers = { version = "0.10.0", path = "./starknet-signers" }
40+
starknet-accounts = { version = "0.11.0", path = "./starknet-accounts" }
41+
starknet-macros = { version = "0.2.1", path = "./starknet-macros" }
4242

4343
[dev-dependencies]
4444
serde_json = "1.0.74"
45-
starknet-signers = { version = "0.9.0", path = "./starknet-signers", features = ["ledger"] }
45+
starknet-signers = { version = "0.10.0", path = "./starknet-signers", features = ["ledger"] }
4646
tokio = { version = "1.15.0", features = ["full"] }
4747
url = "2.2.2"
4848

examples/starknet-wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ crate-type = ["cdylib", "rlib"]
1919
default = ["console_error_panic_hook"]
2020

2121
[dependencies]
22-
starknet-crypto = { version = "0.7.1", path = "../../starknet-crypto" }
22+
starknet-crypto = { version = "0.7.2", path = "../../starknet-crypto" }
2323
console_error_panic_hook = { version = "0.1.7", optional = true }
2424
wasm-bindgen = "0.2.84"

starknet-accounts/Cargo.toml

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

1616
[dependencies]
17-
starknet-core = { version = "0.11.1", path = "../starknet-core" }
18-
starknet-crypto = { version = "0.7.1", path = "../starknet-crypto" }
19-
starknet-providers = { version = "0.11.0", path = "../starknet-providers" }
20-
starknet-signers = { version = "0.9.0", path = "../starknet-signers" }
17+
starknet-core = { version = "0.12.0", path = "../starknet-core" }
18+
starknet-crypto = { version = "0.7.2", path = "../starknet-crypto" }
19+
starknet-providers = { version = "0.12.0", path = "../starknet-providers" }
20+
starknet-signers = { version = "0.10.0", path = "../starknet-signers" }
2121
async-trait = "0.1.68"
2222
auto_impl = "1.0.1"
2323
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.10.0"
3+
version = "0.11.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -14,17 +14,17 @@ keywords = ["ethereum", "starknet", "web3"]
1414
exclude = ["test-data/**"]
1515

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

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

starknet-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-core"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -17,7 +17,7 @@ exclude = ["test-data/**"]
1717
all-features = true
1818

1919
[dependencies]
20-
starknet-crypto = { version = "0.7.1", path = "../starknet-crypto", default-features = false, features = ["alloc"] }
20+
starknet-crypto = { version = "0.7.2", path = "../starknet-crypto", default-features = false, features = ["alloc"] }
2121
base64 = { version = "0.21.0", default-features = false, features = ["alloc"] }
2222
crypto-bigint = { version = "0.5.1", default-features = false }
2323
flate2 = { version = "1.0.25", optional = true }

starknet-crypto/Cargo.toml

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

1616
[dependencies]
17-
starknet-curve = { version = "0.5.0", path = "../starknet-curve" }
17+
starknet-curve = { version = "0.5.1", path = "../starknet-curve" }
1818
crypto-bigint = { version = "0.5.1", default-features = false, features = ["generic-array", "zeroize"] }
1919
hmac = { version = "0.12.1", default-features = false }
2020
num-bigint = { version = "0.4.3", default-features = false }

starknet-curve/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-curve"
3-
version = "0.5.0"
3+
version = "0.5.1"
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.2.0"
3+
version = "0.2.1"
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.11.1", path = "../starknet-core" }
19+
starknet-core = { version = "0.12.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.11.0"
3+
version = "0.12.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.11.1", path = "../starknet-core" }
17+
starknet-core = { version = "0.12.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

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

1515
[dependencies]
16-
starknet-core = { version = "0.11.1", path = "../starknet-core" }
17-
starknet-crypto = { version = "0.7.1", path = "../starknet-crypto" }
16+
starknet-core = { version = "0.12.0", path = "../starknet-core" }
17+
starknet-crypto = { version = "0.7.2", path = "../starknet-crypto" }
1818
async-trait = "0.1.68"
1919
auto_impl = "1.0.1"
2020
thiserror = "1.0.40"

0 commit comments

Comments
 (0)