diff --git a/Cargo.lock b/Cargo.lock index 0be0c7d..252fb56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7779,7 +7779,7 @@ dependencies = [ [[package]] name = "test_utils_solana" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-lang", "anchor-spl", @@ -8518,7 +8518,7 @@ dependencies = [ [[package]] name = "wallet_standard" -version = "0.2.0" +version = "0.2.1" dependencies = [ "async-trait", "bincode", @@ -8535,7 +8535,7 @@ dependencies = [ [[package]] name = "wallet_standard_browser" -version = "0.2.0" +version = "0.2.1" dependencies = [ "async-trait", "bincode", @@ -8557,7 +8557,7 @@ dependencies = [ [[package]] name = "wallet_standard_wallets" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "assert2", @@ -8695,7 +8695,7 @@ dependencies = [ [[package]] name = "wasm_client_anchor" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anchor-lang", "anyhow", @@ -8724,7 +8724,7 @@ dependencies = [ [[package]] name = "wasm_client_solana" -version = "0.3.1" +version = "0.3.2" dependencies = [ "anyhow", "assert2", diff --git a/Cargo.toml b/Cargo.toml index 0771929..160dc2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -89,11 +89,11 @@ test_utils = { path = "./crates/test_utils" } # publishable crates test_utils_solana = { path = "./crates/test_utils_solana" } -wallet_standard = { path = "./crates/wallet_standard", version = "0.2.0" } -wallet_standard_browser = { path = "./crates/wallet_standard_browser", version = "0.2.0" } -wallet_standard_wallets = { path = "./crates/wallet_standard_wallets", version = "0.1.5" } -wasm_client_anchor = { path = "./crates/wasm_client_anchor", version = "0.2.1" } -wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.3.1" } +wallet_standard = { path = "./crates/wallet_standard", version = "0.2.1" } +wallet_standard_browser = { path = "./crates/wallet_standard_browser", version = "0.2.1" } +wallet_standard_wallets = { path = "./crates/wallet_standard_wallets", version = "0.1.6" } +wasm_client_anchor = { path = "./crates/wasm_client_anchor", version = "0.2.2" } +wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.3.2" } [workspace.metadata.bin] anchor-cli = { version = "0.30.1", bins = ["anchor"] } diff --git a/crates/test_utils_solana/Cargo.toml b/crates/test_utils_solana/Cargo.toml index 8ef67fd..c435e53 100644 --- a/crates/test_utils_solana/Cargo.toml +++ b/crates/test_utils_solana/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_utils_solana" -version = "0.4.0" +version = "0.4.1" authors = { workspace = true } edition = { workspace = true } homepage = { workspace = true } diff --git a/crates/test_utils_solana/changelog.md b/crates/test_utils_solana/changelog.md index 32613f6..38e08d7 100644 --- a/crates/test_utils_solana/changelog.md +++ b/crates/test_utils_solana/changelog.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/ifiokjr/wasm_solana/compare/test_utils_solana@v0.4.0...test_utils_solana@v0.4.1) - 2024-10-03 + +### ๐ŸŽ‰ Added + +- new `Unsubscription` struct which unsubscribes from rpc websocket methods + +### โš™๏ธ Miscellaneous Tasks + +- update formatting + ## [0.4.0](https://github.com/ifiokjr/wasm_solana/compare/test_utils_solana@v0.3.0...test_utils_solana@v0.4.0) - 2024-09-28 ### ๐Ÿ› Bug Fixes diff --git a/crates/wallet_standard/Cargo.toml b/crates/wallet_standard/Cargo.toml index 6b49523..58ced5d 100644 --- a/crates/wallet_standard/Cargo.toml +++ b/crates/wallet_standard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wallet_standard" -version = "0.2.0" +version = "0.2.1" authors = { workspace = true } categories = ["wasm", "web-programming"] edition = { workspace = true } diff --git a/crates/wallet_standard/changelog.md b/crates/wallet_standard/changelog.md index df11b96..442f3d3 100644 --- a/crates/wallet_standard/changelog.md +++ b/crates/wallet_standard/changelog.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/ifiokjr/wasm_solana/compare/wallet_standard@v0.2.0...wallet_standard@v0.2.1) - 2024-10-03 + +### โš™๏ธ Miscellaneous Tasks + +- update formatting + ## [0.2.0](https://github.com/ifiokjr/wasm_solana/compare/wallet_standard@v0.1.3...wallet_standard@v0.2.0) - 2024-09-28 ### ๐ŸŽ‰ Added diff --git a/crates/wallet_standard_browser/Cargo.toml b/crates/wallet_standard_browser/Cargo.toml index 9746dd2..55f2762 100644 --- a/crates/wallet_standard_browser/Cargo.toml +++ b/crates/wallet_standard_browser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wallet_standard_browser" -version = "0.2.0" +version = "0.2.1" authors = { workspace = true } categories = ["wasm", "web-programming"] edition = { workspace = true } diff --git a/crates/wallet_standard_browser/changelog.md b/crates/wallet_standard_browser/changelog.md index ceb1a97..052bd5b 100644 --- a/crates/wallet_standard_browser/changelog.md +++ b/crates/wallet_standard_browser/changelog.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/ifiokjr/wasm_solana/compare/wallet_standard_browser@v0.2.0...wallet_standard_browser@v0.2.1) - 2024-10-03 + +### โš™๏ธ Miscellaneous Tasks + +- update formatting + ## [0.2.0](https://github.com/ifiokjr/wasm_solana/compare/wallet_standard_browser@v0.1.4...wallet_standard_browser@v0.2.0) - 2024-09-28 ### ๐ŸŽ‰ Added diff --git a/crates/wallet_standard_wallets/Cargo.toml b/crates/wallet_standard_wallets/Cargo.toml index e285f43..7ccae49 100644 --- a/crates/wallet_standard_wallets/Cargo.toml +++ b/crates/wallet_standard_wallets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wallet_standard_wallets" -version = "0.1.5" +version = "0.1.6" authors = { workspace = true } categories = ["wasm"] edition = { workspace = true } diff --git a/crates/wallet_standard_wallets/changelog.md b/crates/wallet_standard_wallets/changelog.md index 76478ac..12c51cc 100644 --- a/crates/wallet_standard_wallets/changelog.md +++ b/crates/wallet_standard_wallets/changelog.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/ifiokjr/wasm_solana/compare/wallet_standard_wallets@v0.1.5...wallet_standard_wallets@v0.1.6) - 2024-10-03 + +### โš™๏ธ Miscellaneous Tasks + +- update formatting + ## [0.1.5](https://github.com/ifiokjr/wasm_solana/compare/wallet_standard_wallets@v0.1.4...wallet_standard_wallets@v0.1.5) - 2024-09-28 ### ๐Ÿงช Testing diff --git a/crates/wasm_client_anchor/Cargo.toml b/crates/wasm_client_anchor/Cargo.toml index 5a438cf..1750bfa 100644 --- a/crates/wasm_client_anchor/Cargo.toml +++ b/crates/wasm_client_anchor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm_client_anchor" -version = "0.2.1" +version = "0.2.2" authors = { workspace = true } categories = ["wasm", "web-programming"] edition = { workspace = true } diff --git a/crates/wasm_client_anchor/changelog.md b/crates/wasm_client_anchor/changelog.md index 35d7f63..f9e6d18 100644 --- a/crates/wasm_client_anchor/changelog.md +++ b/crates/wasm_client_anchor/changelog.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/ifiokjr/wasm_solana/compare/wasm_client_anchor@v0.2.1...wasm_client_anchor@v0.2.2) - 2024-10-03 + +### โš™๏ธ Miscellaneous Tasks + +- update formatting + ## [0.2.1](https://github.com/ifiokjr/wasm_solana/compare/wasm_client_anchor@v0.2.0...wasm_client_anchor@v0.2.1) - 2024-09-28 ### ๐ŸŽ‰ Added diff --git a/crates/wasm_client_solana/Cargo.toml b/crates/wasm_client_solana/Cargo.toml index 1e523af..1ede3fb 100644 --- a/crates/wasm_client_solana/Cargo.toml +++ b/crates/wasm_client_solana/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm_client_solana" -version = "0.3.1" +version = "0.3.2" authors = { workspace = true } categories = ["wasm", "web-programming"] edition = { workspace = true } diff --git a/crates/wasm_client_solana/changelog.md b/crates/wasm_client_solana/changelog.md index 2651cb1..88fd80d 100644 --- a/crates/wasm_client_solana/changelog.md +++ b/crates/wasm_client_solana/changelog.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.2](https://github.com/ifiokjr/wasm_solana/compare/wasm_client_solana@v0.3.1...wasm_client_solana@v0.3.2) - 2024-10-03 + +### ๐ŸŽ‰ Added + +- new `Unsubscription` struct which unsubscribes from rpc websocket methods + +### โš™๏ธ Miscellaneous Tasks + +- update formatting + ## [0.3.1](https://github.com/ifiokjr/wasm_solana/compare/wasm_client_solana@v0.3.0...wasm_client_solana@v0.3.1) - 2024-09-28 ### ๐ŸŽ‰ Added