Skip to content

Commit 1af6c26

Browse files
authored
release: bump starknet to 0.14.0 (and deps) (#708)
1 parent 6939d90 commit 1af6c26

File tree

8 files changed

+31
-31
lines changed

8 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

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -34,17 +34,17 @@ all-features = true
3434

3535
[dependencies]
3636
starknet-crypto = { version = "0.7.4", path = "./starknet-crypto" }
37-
starknet-core = { version = "0.12.2", path = "./starknet-core", default-features = false }
37+
starknet-core = { version = "0.13.0", path = "./starknet-core", default-features = false }
3838
starknet-core-derive = { version = "0.1.0", path = "./starknet-core-derive", features = ["import_from_starknet"] }
39-
starknet-providers = { version = "0.12.1", path = "./starknet-providers" }
40-
starknet-contract = { version = "0.12.0", path = "./starknet-contract" }
41-
starknet-signers = { version = "0.10.2", path = "./starknet-signers" }
42-
starknet-accounts = { version = "0.12.0", path = "./starknet-accounts" }
43-
starknet-macros = { version = "0.2.1", path = "./starknet-macros" }
39+
starknet-providers = { version = "0.13.0", path = "./starknet-providers" }
40+
starknet-contract = { version = "0.13.0", path = "./starknet-contract" }
41+
starknet-signers = { version = "0.11.0", path = "./starknet-signers" }
42+
starknet-accounts = { version = "0.13.0", path = "./starknet-accounts" }
43+
starknet-macros = { version = "0.2.2", path = "./starknet-macros" }
4444

4545
[dev-dependencies]
4646
serde_json = "1.0.74"
47-
starknet-signers = { version = "0.10.2", path = "./starknet-signers", features = ["ledger"] }
47+
starknet-signers = { version = "0.11.0", path = "./starknet-signers", features = ["ledger"] }
4848
tokio = { version = "1.15.0", features = ["full"] }
4949
url = "2.2.2"
5050

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.12.0"
3+
version = "0.13.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.12.2", path = "../starknet-core" }
17+
starknet-core = { version = "0.13.0", path = "../starknet-core" }
1818
starknet-crypto = { version = "0.7.4", path = "../starknet-crypto" }
19-
starknet-providers = { version = "0.12.1", path = "../starknet-providers" }
20-
starknet-signers = { version = "0.10.2", path = "../starknet-signers" }
19+
starknet-providers = { version = "0.13.0", path = "../starknet-providers" }
20+
starknet-signers = { version = "0.11.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.12.0"
3+
version = "0.13.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.12.2", path = "../starknet-core" }
18-
starknet-providers = { version = "0.12.1", path = "../starknet-providers" }
19-
starknet-accounts = { version = "0.12.0", path = "../starknet-accounts" }
17+
starknet-core = { version = "0.13.0", path = "../starknet-core" }
18+
starknet-providers = { version = "0.13.0", path = "../starknet-providers" }
19+
starknet-accounts = { version = "0.13.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.10.2", path = "../starknet-signers" }
27+
starknet-signers = { version = "0.11.0", path = "../starknet-signers" }
2828
tokio = { version = "1.27.0", features = ["full"] }
2929
url = "2.3.1"
3030

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.12.2"
3+
version = "0.13.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.2.1"
3+
version = "0.2.2"
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.12.2", path = "../starknet-core" }
19+
starknet-core = { version = "0.13.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.12.1"
3+
version = "0.13.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.12.2", path = "../starknet-core" }
17+
starknet-core = { version = "0.13.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.10.2"
3+
version = "0.11.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.12.2", path = "../starknet-core" }
16+
starknet-core = { version = "0.13.0", path = "../starknet-core" }
1717
starknet-crypto = { version = "0.7.4", path = "../starknet-crypto" }
1818
async-trait = "0.1.68"
1919
auto_impl = "1.0.1"

0 commit comments

Comments
 (0)