From f5c9f7bb6d81f44f39a4377d449576769b817082 Mon Sep 17 00:00:00 2001 From: Jonathan LEI Date: Wed, 1 Nov 2023 05:34:42 +0000 Subject: [PATCH] release: bump starknet-ff and starknet-core --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- examples/starknet-wasm/Cargo.toml | 2 +- starknet-accounts/Cargo.toml | 2 +- starknet-contract/Cargo.toml | 2 +- starknet-core/Cargo.toml | 4 ++-- starknet-crypto-codegen/Cargo.toml | 2 +- starknet-crypto/Cargo.toml | 2 +- starknet-curve/Cargo.toml | 2 +- starknet-ff/Cargo.toml | 2 +- starknet-macros/Cargo.toml | 2 +- starknet-providers/Cargo.toml | 2 +- starknet-signers/Cargo.toml | 2 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d9d3ce34..895d3e16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1687,7 +1687,7 @@ dependencies = [ [[package]] name = "starknet-core" -version = "0.7.0" +version = "0.7.1" dependencies = [ "base64 0.21.0", "criterion", @@ -1755,7 +1755,7 @@ dependencies = [ [[package]] name = "starknet-ff" -version = "0.3.4" +version = "0.3.5" dependencies = [ "ark-ff", "bigdecimal", diff --git a/Cargo.toml b/Cargo.toml index e898cfac..62c2934c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/examples/starknet-wasm/Cargo.toml b/examples/starknet-wasm/Cargo.toml index 48c05114..4b8300f1 100644 --- a/examples/starknet-wasm/Cargo.toml +++ b/examples/starknet-wasm/Cargo.toml @@ -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" diff --git a/starknet-accounts/Cargo.toml b/starknet-accounts/Cargo.toml index 95cd090e..539f1fa8 100644 --- a/starknet-accounts/Cargo.toml +++ b/starknet-accounts/Cargo.toml @@ -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" diff --git a/starknet-contract/Cargo.toml b/starknet-contract/Cargo.toml index 835d55be..4b1d5adb 100644 --- a/starknet-contract/Cargo.toml +++ b/starknet-contract/Cargo.toml @@ -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"] } diff --git a/starknet-core/Cargo.toml b/starknet-core/Cargo.toml index 8a8eeb1b..fa0a9073 100644 --- a/starknet-core/Cargo.toml +++ b/starknet-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-core" -version = "0.7.0" +version = "0.7.1" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -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"] } diff --git a/starknet-crypto-codegen/Cargo.toml b/starknet-crypto-codegen/Cargo.toml index 87034a67..b4fa8c15 100644 --- a/starknet-crypto-codegen/Cargo.toml +++ b/starknet-crypto-codegen/Cargo.toml @@ -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 } diff --git a/starknet-crypto/Cargo.toml b/starknet-crypto/Cargo.toml index 32ef67d4..e0f18e18 100644 --- a/starknet-crypto/Cargo.toml +++ b/starknet-crypto/Cargo.toml @@ -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 } diff --git a/starknet-curve/Cargo.toml b/starknet-curve/Cargo.toml index 9a9f3976..3dd29224 100644 --- a/starknet-curve/Cargo.toml +++ b/starknet-curve/Cargo.toml @@ -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 } diff --git a/starknet-ff/Cargo.toml b/starknet-ff/Cargo.toml index 81434578..87c6217b 100644 --- a/starknet-ff/Cargo.toml +++ b/starknet-ff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-ff" -version = "0.3.4" +version = "0.3.5" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" diff --git a/starknet-macros/Cargo.toml b/starknet-macros/Cargo.toml index eee8f90f..97ff9a46 100644 --- a/starknet-macros/Cargo.toml +++ b/starknet-macros/Cargo.toml @@ -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] diff --git a/starknet-providers/Cargo.toml b/starknet-providers/Cargo.toml index 49f40fe8..aab9dd6a 100644 --- a/starknet-providers/Cargo.toml +++ b/starknet-providers/Cargo.toml @@ -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" diff --git a/starknet-signers/Cargo.toml b/starknet-signers/Cargo.toml index 362dd706..16f20263 100644 --- a/starknet-signers/Cargo.toml +++ b/starknet-signers/Cargo.toml @@ -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"