feat: deprecate legacy utility functions and bump version to 0.6.7

- Add deprecation warnings to PumpFun and PumpSwap utility functions
- Update version from 0.6.6 to 0.6.7 in Cargo.toml and documentation
- Add .claude/ directory to .gitignore
- Mark legacy price calculation and data retrieval functions as deprecated
This commit is contained in:
ysq
2025-09-11 17:17:58 +08:00
parent fce043f087
commit 40b4541036
5 changed files with 13 additions and 5 deletions
+2 -2
View File
@@ -89,14 +89,14 @@ Add the dependency to your `Cargo.toml`:
```toml
# Add to your Cargo.toml
sol-trade-sdk = { path = "./sol-trade-sdk", version = "0.6.6" }
sol-trade-sdk = { path = "./sol-trade-sdk", version = "0.6.7" }
```
### Use crates.io
```toml
# Add to your Cargo.toml
sol-trade-sdk = "0.6.6"
sol-trade-sdk = "0.6.7"
```
## 🛠️ Usage Examples