From 4f4edbf00a9056ba4b4d1e6550eb900745b93226 Mon Sep 17 00:00:00 2001 From: ysq Date: Tue, 22 Jul 2025 00:03:42 +0800 Subject: [PATCH] chore: bump version to 0.2.3 and update dependencies - Bump sol-trade-sdk version to 0.2.3 - Update solana-streamer-sdk to 0.1.2 - Sync version in documentation - Exclude examples/ from git tracking --- .gitignore | 3 ++- Cargo.toml | 4 ++-- README.md | 4 ++-- README_CN.md | 4 ++-- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index a3ccb4c..758bff4 100755 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,5 @@ Cargo.lock .cargo/ tmp_*.rs -tmp_*.log \ No newline at end of file +tmp_*.log +examples/ \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 07c9801..b588025 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sol-trade-sdk" -version = "0.2.2" +version = "0.2.3" edition = "2021" authors = ["William ", "sgxiang ", "wei <1415121722@qq.com>"] repository = "https://github.com/0xfnzero/sol-trade-sdk" @@ -13,7 +13,7 @@ readme = "README.md" crate-type = ["cdylib", "rlib"] [dependencies] -solana-streamer-sdk = "0.1.1" +solana-streamer-sdk = "0.1.2" solana-sdk = "2.1.16" solana-client = "2.1.16" solana-program = "2.1.16" diff --git a/README.md b/README.md index b2d4ba7..abbec42 100755 --- a/README.md +++ b/README.md @@ -31,14 +31,14 @@ Add the dependency to your `Cargo.toml`: ```toml # Add to your Cargo.toml -sol-trade-sdk = { path = "./sol-trade-sdk", version = "0.2.2" } +sol-trade-sdk = { path = "./sol-trade-sdk", version = "0.2.3" } ``` ### Use crates.io ```toml # Add to your Cargo.toml -sol-trade-sdk = "0.2.2" +sol-trade-sdk = "0.2.3" ``` ## Usage Examples diff --git a/README_CN.md b/README_CN.md index 82b8dca..9112474 100755 --- a/README_CN.md +++ b/README_CN.md @@ -31,14 +31,14 @@ git clone https://github.com/0xfnzero/sol-trade-sdk ```toml # 添加到您的 Cargo.toml -sol-trade-sdk = { path = "./sol-trade-sdk", version = "0.2.2" } +sol-trade-sdk = { path = "./sol-trade-sdk", version = "0.2.3" } ``` ### 使用 crates.io ```toml # 添加到您的 Cargo.toml -sol-trade-sdk = "0.2.2" +sol-trade-sdk = "0.2.3" ``` ## 使用示例