Skip to content

Commit 0a37a27

Browse files
authored
release: bump crate versions (#430)
1 parent a866e90 commit 0a37a27

File tree

12 files changed

+42
-42
lines changed

12 files changed

+42
-42
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -35,12 +35,12 @@ all-features = true
3535

3636
[dependencies]
3737
starknet-ff = { version = "0.3.4", path = "./starknet-ff", default-features = false }
38-
starknet-core = { version = "0.3.2", path = "./starknet-core", default-features = false }
39-
starknet-providers = { version = "0.3.0", path = "./starknet-providers" }
40-
starknet-contract = { version = "0.2.0", path = "./starknet-contract" }
41-
starknet-signers = { version = "0.2.1", path = "./starknet-signers" }
42-
starknet-accounts = { version = "0.2.0", path = "./starknet-accounts" }
43-
starknet-macros = { version = "0.1.0", path = "./starknet-macros" }
38+
starknet-core = { version = "0.4.0", path = "./starknet-core", default-features = false }
39+
starknet-providers = { version = "0.4.0", path = "./starknet-providers" }
40+
starknet-contract = { version = "0.3.0", path = "./starknet-contract" }
41+
starknet-signers = { version = "0.2.2", path = "./starknet-signers" }
42+
starknet-accounts = { version = "0.3.0", path = "./starknet-accounts" }
43+
starknet-macros = { version = "0.1.1", path = "./starknet-macros" }
4444

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

examples/starknet-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ default = ["console_error_panic_hook"]
2020

2121
[dependencies]
2222
starknet-ff = { version = "0.3.4", path = "../../starknet-ff" }
23-
starknet-crypto = { version = "0.5.1", path = "../../starknet-crypto" }
23+
starknet-crypto = { version = "0.6.0", path = "../../starknet-crypto" }
2424
console_error_panic_hook = { version = "0.1.7", optional = true }
2525
wasm-bindgen = "0.2.84"

starknet-accounts/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-accounts"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -13,9 +13,9 @@ Types for handling Starknet account abstraction
1313
keywords = ["ethereum", "starknet", "web3"]
1414

1515
[dependencies]
16-
starknet-core = { version = "0.3.2", path = "../starknet-core" }
17-
starknet-providers = { version = "0.3.0", path = "../starknet-providers" }
18-
starknet-signers = { version = "0.2.1", path = "../starknet-signers" }
16+
starknet-core = { version = "0.4.0", path = "../starknet-core" }
17+
starknet-providers = { version = "0.4.0", path = "../starknet-providers" }
18+
starknet-signers = { version = "0.2.2", path = "../starknet-signers" }
1919
async-trait = "0.1.68"
2020
thiserror = "1.0.40"
2121

starknet-contract/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-contract"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -13,16 +13,16 @@ Types and utilities for Starknet smart contract deployment and interaction
1313
keywords = ["ethereum", "starknet", "web3"]
1414

1515
[dependencies]
16-
starknet-core = { version = "0.3.2", path = "../starknet-core" }
17-
starknet-providers = { version = "0.3.0", path = "../starknet-providers" }
18-
starknet-accounts = { version = "0.2.0", path = "../starknet-accounts" }
16+
starknet-core = { version = "0.4.0", path = "../starknet-core" }
17+
starknet-providers = { version = "0.4.0", path = "../starknet-providers" }
18+
starknet-accounts = { version = "0.3.0", path = "../starknet-accounts" }
1919
serde = { version = "1.0.160", features = ["derive"] }
2020
serde_json = "1.0.96"
2121
serde_with = "2.3.2"
2222
thiserror = "1.0.40"
2323

2424
[dev-dependencies]
2525
rand = { version = "0.8.5", features=["std_rng"] }
26-
starknet-signers = { version = "0.2.1", path = "../starknet-signers" }
26+
starknet-signers = { version = "0.2.2", path = "../starknet-signers" }
2727
tokio = { version = "1.27.0", features = ["full"] }
2828
url = "2.3.1"

starknet-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-core"
3-
version = "0.3.2"
3+
version = "0.4.0"
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
all-features = true
1717

1818
[dependencies]
19-
starknet-crypto = { version = "0.5.1", path = "../starknet-crypto", default-features = false, features = [ "alloc" ] }
19+
starknet-crypto = { version = "0.6.0", path = "../starknet-crypto", default-features = false, features = [ "alloc" ] }
2020
starknet-ff = { version = "0.3.4", path = "../starknet-ff", default-features = false, features = ["serde"] }
2121
base64 = { version = "0.21.0", default-features = false, features = ["alloc"] }
2222
flate2 = { version = "1.0.25", optional = true }

starknet-crypto-codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-crypto-codegen"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -16,6 +16,6 @@ keywords = ["ethereum", "starknet", "web3", "no_std"]
1616
proc-macro = true
1717

1818
[dependencies]
19-
starknet-curve = { version = "0.3.0", path = "../starknet-curve" }
19+
starknet-curve = { version = "0.4.0", path = "../starknet-curve" }
2020
starknet-ff = { version = "0.3.4", path = "../starknet-ff", default-features = false }
2121
syn = { version = "2.0.15", default-features = false }

starknet-crypto/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-crypto"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -13,8 +13,8 @@ Low-level cryptography utilities for Starknet
1313
keywords = ["ethereum", "starknet", "web3", "no_std"]
1414

1515
[dependencies]
16-
starknet-crypto-codegen = { version = "0.3.1", path = "../starknet-crypto-codegen" }
17-
starknet-curve = { version = "0.3.0", path = "../starknet-curve" }
16+
starknet-crypto-codegen = { version = "0.3.2", path = "../starknet-crypto-codegen" }
17+
starknet-curve = { version = "0.4.0", path = "../starknet-curve" }
1818
starknet-ff = { version = "0.3.4", path = "../starknet-ff", default-features = false }
1919
crypto-bigint = { version = "0.5.1", default-features = false, features = ["generic-array", "zeroize"] }
2020
hmac = { version = "0.12.1", default-features = false }

starknet-curve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-curve"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"

starknet-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-macros"
3-
version = "0.1.0"
3+
version = "0.1.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.3.2", path = "../starknet-core" }
19+
starknet-core = { version = "0.4.0", path = "../starknet-core" }
2020
syn = "2.0.15"
2121

2222
[features]

0 commit comments

Comments
 (0)