Skip to content

Commit

Permalink
release: bump starknet to 0.9.0 (and deps) (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI authored Jan 16, 2024
1 parent 0857bd6 commit 49719f4
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 31 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet"
version = "0.8.0"
version = "0.9.0"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions starknet-accounts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-accounts"
version = "0.7.0"
version = "0.8.0"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions starknet-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-contract"
version = "0.7.0"
version = "0.8.0"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -14,16 +14,16 @@ 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"
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"
2 changes: 1 addition & 1 deletion starknet-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-core"
version = "0.8.0"
version = "0.9.0"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions starknet-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-macros"
version = "0.1.5"
version = "0.1.6"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions starknet-providers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-providers"
version = "0.8.0"
version = "0.9.0"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions starknet-signers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-signers"
version = "0.6.0"
version = "0.7.0"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -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"
Expand Down

0 comments on commit 49719f4

Please sign in to comment.