Skip to content

Commit

Permalink
release: bump starknet-ff and starknet-core
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI committed Nov 1, 2023
1 parent 27cf6d4 commit f5c9f7b
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ members = [
all-features = true

[dependencies]
starknet-ff = { version = "0.3.4", path = "./starknet-ff", default-features = false }
starknet-ff = { version = "0.3.5", path = "./starknet-ff", default-features = false }
starknet-crypto = { version = "0.6.1", path = "./starknet-crypto" }
starknet-core = { version = "0.7.0", path = "./starknet-core", default-features = false }
starknet-core = { version = "0.7.1", path = "./starknet-core", default-features = false }
starknet-providers = { version = "0.7.0", path = "./starknet-providers" }
starknet-contract = { version = "0.6.0", path = "./starknet-contract" }
starknet-signers = { version = "0.5.0", path = "./starknet-signers" }
Expand Down
2 changes: 1 addition & 1 deletion examples/starknet-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ crate-type = ["cdylib", "rlib"]
default = ["console_error_panic_hook"]

[dependencies]
starknet-ff = { version = "0.3.4", path = "../../starknet-ff" }
starknet-ff = { version = "0.3.5", path = "../../starknet-ff" }
starknet-crypto = { version = "0.6.1", path = "../../starknet-crypto" }
console_error_panic_hook = { version = "0.1.7", optional = true }
wasm-bindgen = "0.2.84"
2 changes: 1 addition & 1 deletion starknet-accounts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"]
exclude = ["test-data/**"]

[dependencies]
starknet-core = { version = "0.7.0", path = "../starknet-core" }
starknet-core = { version = "0.7.1", path = "../starknet-core" }
starknet-providers = { version = "0.7.0", path = "../starknet-providers" }
starknet-signers = { version = "0.5.0", path = "../starknet-signers" }
async-trait = "0.1.68"
Expand Down
2 changes: 1 addition & 1 deletion starknet-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"]
exclude = ["test-data/**"]

[dependencies]
starknet-core = { version = "0.7.0", path = "../starknet-core" }
starknet-core = { version = "0.7.1", path = "../starknet-core" }
starknet-providers = { version = "0.7.0", path = "../starknet-providers" }
starknet-accounts = { version = "0.6.0", path = "../starknet-accounts" }
serde = { version = "1.0.160", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions starknet-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-core"
version = "0.7.0"
version = "0.7.1"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -18,7 +18,7 @@ all-features = true

[dependencies]
starknet-crypto = { version = "0.6.1", path = "../starknet-crypto", default-features = false, features = ["alloc"] }
starknet-ff = { version = "0.3.4", path = "../starknet-ff", default-features = false, features = ["serde"] }
starknet-ff = { version = "0.3.5", path = "../starknet-ff", default-features = false, features = ["serde"] }
base64 = { version = "0.21.0", default-features = false, features = ["alloc"] }
flate2 = { version = "1.0.25", optional = true }
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
Expand Down
2 changes: 1 addition & 1 deletion starknet-crypto-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ proc-macro = true

[dependencies]
starknet-curve = { version = "0.4.0", path = "../starknet-curve" }
starknet-ff = { version = "0.3.4", path = "../starknet-ff", default-features = false }
starknet-ff = { version = "0.3.5", path = "../starknet-ff", default-features = false }
syn = { version = "2.0.15", default-features = false }
2 changes: 1 addition & 1 deletion starknet-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exclude = ["test-data/**"]
[dependencies]
starknet-crypto-codegen = { version = "0.3.2", path = "../starknet-crypto-codegen" }
starknet-curve = { version = "0.4.0", path = "../starknet-curve" }
starknet-ff = { version = "0.3.4", path = "../starknet-ff", default-features = false }
starknet-ff = { version = "0.3.5", path = "../starknet-ff", default-features = false }
crypto-bigint = { version = "0.5.1", default-features = false, features = ["generic-array", "zeroize"] }
hmac = { version = "0.12.1", default-features = false }
num-bigint = { version = "0.4.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion starknet-curve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Stark curve
keywords = ["ethereum", "starknet", "web3", "no_std"]

[dependencies]
starknet-ff = { version = "0.3.4", path = "../starknet-ff", default-features = false }
starknet-ff = { version = "0.3.5", path = "../starknet-ff", default-features = false }
2 changes: 1 addition & 1 deletion starknet-ff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-ff"
version = "0.3.4"
version = "0.3.5"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion starknet-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = ["ethereum", "starknet", "web3"]
proc-macro = true

[dependencies]
starknet-core = { version = "0.7.0", path = "../starknet-core" }
starknet-core = { version = "0.7.1", path = "../starknet-core" }
syn = "2.0.15"

[features]
Expand Down
2 changes: 1 addition & 1 deletion starknet-providers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"]
exclude = ["test-data/**"]

[dependencies]
starknet-core = { version = "0.7.0", path = "../starknet-core" }
starknet-core = { version = "0.7.1", path = "../starknet-core" }
async-trait = "0.1.68"
auto_impl = "1.0.1"
ethereum-types = "0.14.1"
Expand Down
2 changes: 1 addition & 1 deletion starknet-signers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Starknet signer implementations
keywords = ["ethereum", "starknet", "web3"]

[dependencies]
starknet-core = { version = "0.7.0", path = "../starknet-core" }
starknet-core = { version = "0.7.1", path = "../starknet-core" }
starknet-crypto = { version = "0.6.1", path = "../starknet-crypto" }
async-trait = "0.1.68"
auto_impl = "1.0.1"
Expand Down

0 comments on commit f5c9f7b

Please sign in to comment.