Skip to content

Commit

Permalink
chore: bump version to 1.0.0 and adjust once_cell dependency (#82)
Browse files Browse the repository at this point in the history
Change the package version from 1.0.0-rc to 1.0.0 in Cargo.toml and README.md. Also, update the once_cell dependency from version 1.20 to 1.19.
  • Loading branch information
shuhuiluo authored Sep 17, 2024
1 parent 0110515 commit 7172f94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniswap-v3-sdk"
version = "1.0.0-rc"
version = "1.0.0"
edition = "2021"
authors = ["Shuhui Luo <twitter.com/aureliano_law>"]
description = "Uniswap V3 SDK for Rust"
Expand All @@ -23,7 +23,7 @@ bigdecimal = "0.4.5"
num-bigint = "0.4"
num-integer = "0.1"
num-traits = "0.2"
once_cell = "1.20"
once_cell = "1.19"
regex = { version = "1.10", optional = true }
rustc-hash = "2.0"
serde_json = { version = "1.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,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 = "1.0.0-rc", features = ["extensions", "std"] }
uniswap-v3-sdk = { version = "1.0.0", features = ["extensions", "std"] }
```

### Usage
Expand Down

0 comments on commit 7172f94

Please sign in to comment.