From 49719f49a18f9621fc37342959e84900b600083e Mon Sep 17 00:00:00 2001 From: Jonathan LEI Date: Mon, 15 Jan 2024 18:06:37 -0700 Subject: [PATCH] release: bump starknet to 0.9.0 (and deps) (#537) --- Cargo.lock | 14 +++++++------- Cargo.toml | 14 +++++++------- README.md | 2 +- starknet-accounts/Cargo.toml | 8 ++++---- starknet-contract/Cargo.toml | 10 +++++----- starknet-core/Cargo.toml | 2 +- starknet-macros/Cargo.toml | 4 ++-- starknet-providers/Cargo.toml | 4 ++-- starknet-signers/Cargo.toml | 4 ++-- 9 files changed, 31 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bc4aeab1..199137ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1636,7 +1636,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "starknet" -version = "0.8.0" +version = "0.9.0" dependencies = [ "serde_json", "starknet-accounts", @@ -1653,7 +1653,7 @@ dependencies = [ [[package]] name = "starknet-accounts" -version = "0.7.0" +version = "0.8.0" dependencies = [ "async-trait", "auto_impl", @@ -1670,7 +1670,7 @@ dependencies = [ [[package]] name = "starknet-contract" -version = "0.7.0" +version = "0.8.0" dependencies = [ "rand", "serde", @@ -1687,7 +1687,7 @@ dependencies = [ [[package]] name = "starknet-core" -version = "0.8.0" +version = "0.9.0" dependencies = [ "base64 0.21.0", "criterion", @@ -1770,7 +1770,7 @@ dependencies = [ [[package]] name = "starknet-macros" -version = "0.1.5" +version = "0.1.6" dependencies = [ "starknet-core", "syn 2.0.15", @@ -1778,7 +1778,7 @@ dependencies = [ [[package]] name = "starknet-providers" -version = "0.8.0" +version = "0.9.0" dependencies = [ "async-trait", "auto_impl", @@ -1798,7 +1798,7 @@ dependencies = [ [[package]] name = "starknet-signers" -version = "0.6.0" +version = "0.7.0" dependencies = [ "async-trait", "auto_impl", diff --git a/Cargo.toml b/Cargo.toml index 1d6e3ce2..0a584da8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet" -version = "0.8.0" +version = "0.9.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -36,12 +36,12 @@ all-features = true [dependencies] starknet-ff = { version = "0.3.6", path = "./starknet-ff", default-features = false } starknet-crypto = { version = "0.6.1", path = "./starknet-crypto" } -starknet-core = { version = "0.8.0", path = "./starknet-core", default-features = false } -starknet-providers = { version = "0.8.0", path = "./starknet-providers" } -starknet-contract = { version = "0.7.0", path = "./starknet-contract" } -starknet-signers = { version = "0.6.0", path = "./starknet-signers" } -starknet-accounts = { version = "0.7.0", path = "./starknet-accounts" } -starknet-macros = { version = "0.1.5", path = "./starknet-macros" } +starknet-core = { version = "0.9.0", path = "./starknet-core", default-features = false } +starknet-providers = { version = "0.9.0", path = "./starknet-providers" } +starknet-contract = { version = "0.8.0", path = "./starknet-contract" } +starknet-signers = { version = "0.7.0", path = "./starknet-signers" } +starknet-accounts = { version = "0.8.0", path = "./starknet-accounts" } +starknet-macros = { version = "0.1.6", path = "./starknet-macros" } [dev-dependencies] serde_json = "1.0.74" diff --git a/README.md b/README.md index 76c649f7..04ba9869 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To use the crate from [crates.io](https://crates.io/crates/starknet), add the fo ```toml [dependencies] -starknet = "0.8.0" +starknet = "0.9.0" ``` Note that the [crates.io version](https://crates.io/crates/starknet) might be outdated. You may want to use the library directly from GitHub for all the latest features and fixes: diff --git a/starknet-accounts/Cargo.toml b/starknet-accounts/Cargo.toml index 0fbbca15..9f98fa99 100644 --- a/starknet-accounts/Cargo.toml +++ b/starknet-accounts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-accounts" -version = "0.7.0" +version = "0.8.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -14,9 +14,9 @@ keywords = ["ethereum", "starknet", "web3"] exclude = ["test-data/**"] [dependencies] -starknet-core = { version = "0.8.0", path = "../starknet-core" } -starknet-providers = { version = "0.8.0", path = "../starknet-providers" } -starknet-signers = { version = "0.6.0", path = "../starknet-signers" } +starknet-core = { version = "0.9.0", path = "../starknet-core" } +starknet-providers = { version = "0.9.0", path = "../starknet-providers" } +starknet-signers = { version = "0.7.0", path = "../starknet-signers" } async-trait = "0.1.68" auto_impl = "1.0.1" thiserror = "1.0.40" diff --git a/starknet-contract/Cargo.toml b/starknet-contract/Cargo.toml index deabecc4..59781c37 100644 --- a/starknet-contract/Cargo.toml +++ b/starknet-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-contract" -version = "0.7.0" +version = "0.8.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -14,9 +14,9 @@ keywords = ["ethereum", "starknet", "web3"] exclude = ["test-data/**"] [dependencies] -starknet-core = { version = "0.8.0", path = "../starknet-core" } -starknet-providers = { version = "0.8.0", path = "../starknet-providers" } -starknet-accounts = { version = "0.7.0", path = "../starknet-accounts" } +starknet-core = { version = "0.9.0", path = "../starknet-core" } +starknet-providers = { version = "0.9.0", path = "../starknet-providers" } +starknet-accounts = { version = "0.8.0", path = "../starknet-accounts" } serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.96" serde_with = "2.3.2" @@ -24,6 +24,6 @@ thiserror = "1.0.40" [dev-dependencies] rand = { version = "0.8.5", features=["std_rng"] } -starknet-signers = { version = "0.6.0", path = "../starknet-signers" } +starknet-signers = { version = "0.7.0", path = "../starknet-signers" } tokio = { version = "1.27.0", features = ["full"] } url = "2.3.1" diff --git a/starknet-core/Cargo.toml b/starknet-core/Cargo.toml index 2424853a..23215533 100644 --- a/starknet-core/Cargo.toml +++ b/starknet-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-core" -version = "0.8.0" +version = "0.9.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" diff --git a/starknet-macros/Cargo.toml b/starknet-macros/Cargo.toml index 408a5284..0c78f2cd 100644 --- a/starknet-macros/Cargo.toml +++ b/starknet-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-macros" -version = "0.1.5" +version = "0.1.6" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -16,7 +16,7 @@ keywords = ["ethereum", "starknet", "web3"] proc-macro = true [dependencies] -starknet-core = { version = "0.8.0", path = "../starknet-core" } +starknet-core = { version = "0.9.0", path = "../starknet-core" } syn = "2.0.15" [features] diff --git a/starknet-providers/Cargo.toml b/starknet-providers/Cargo.toml index 128a9bf3..5d6c441a 100644 --- a/starknet-providers/Cargo.toml +++ b/starknet-providers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-providers" -version = "0.8.0" +version = "0.9.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"] exclude = ["test-data/**"] [dependencies] -starknet-core = { version = "0.8.0", path = "../starknet-core" } +starknet-core = { version = "0.9.0", 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 996374ec..4ab8be91 100644 --- a/starknet-signers/Cargo.toml +++ b/starknet-signers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-signers" -version = "0.6.0" +version = "0.7.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -13,7 +13,7 @@ Starknet signer implementations keywords = ["ethereum", "starknet", "web3"] [dependencies] -starknet-core = { version = "0.8.0", path = "../starknet-core" } +starknet-core = { version = "0.9.0", path = "../starknet-core" } starknet-crypto = { version = "0.6.1", path = "../starknet-crypto" } async-trait = "0.1.68" auto_impl = "1.0.1"