Skip to content

Commit

Permalink
chore: bump package and dependency versions (#115)
Browse files Browse the repository at this point in the history
Updated `uniswap-v3-sdk` to version 2.9.0 and upgraded dependencies: `alloy`, `alloy-signer`, and `uniswap-lens` to ensure compatibility with newer releases. Adjusted usage instructions in `README.md` to reflect new version.
  • Loading branch information
shuhuiluo authored Dec 11, 2024
1 parent 40e9623 commit 9ec06d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniswap-v3-sdk"
version = "2.8.0"
version = "2.9.0"
edition = "2021"
authors = ["Shuhui Luo <twitter.com/aureliano_law>"]
description = "Uniswap V3 SDK for Rust"
Expand All @@ -15,7 +15,7 @@ exclude = [".github", ".gitignore", "rustfmt.toml"]
all-features = true

[dependencies]
alloy = { version = "0.7", optional = true, features = ["contract"] }
alloy = { version = "0.8", optional = true, features = ["contract"] }
alloy-primitives = "0.8"
alloy-sol-types = "0.8"
anyhow = { version = "1.0", optional = true }
Expand All @@ -30,7 +30,7 @@ regex = { version = "1.11", optional = true }
rustc-hash = "2.0"
serde_json = { version = "1.0", optional = true }
thiserror = { version = "2", default-features = false }
uniswap-lens = { version = "0.8", optional = true }
uniswap-lens = { version = "0.9", optional = true }
uniswap-sdk-core = "3.2.0"

[features]
Expand All @@ -39,8 +39,8 @@ extensions = ["alloy", "anyhow", "base64", "regex", "serde_json", "uniswap-lens"
std = ["alloy?/std", "thiserror/std", "uniswap-sdk-core/std", "uniswap-lens?/std"]

[dev-dependencies]
alloy-signer = "0.7"
alloy-signer-local = "0.7"
alloy-signer = "0.8"
alloy-signer-local = "0.8"
criterion = "0.5.1"
dotenv = "0.15.0"
tokio = { version = "1.40", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ It is feature-complete with unit tests matching the TypeScript SDK.
Add the following to your `Cargo.toml` file:

```toml
uniswap-v3-sdk = { version = "2.8.0", features = ["extensions", "std"] }
uniswap-v3-sdk = { version = "2.9.0", features = ["extensions", "std"] }
```

### Usage
Expand Down

0 comments on commit 9ec06d9

Please sign in to comment.