From c6acd244b1e21584b587cb4d30ff4e51baf2ca37 Mon Sep 17 00:00:00 2001 From: "kickjump-bot[bot]" <179439731+kickjump-bot[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:51:07 +0000 Subject: [PATCH] chore: release (#31) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## ๐Ÿค– New release * `memory_wallet`: 0.1.16 -> 0.1.17 (โœ“ API compatible changes) * `wasm_client_solana`: 0.7.0 -> 0.7.1 (โœ“ API compatible changes) * `test_utils_insta`: 0.1.0 * `test_utils_keypairs`: 0.1.0 * `test_utils_solana`: 0.6.1 -> 0.6.2 (โœ“ API compatible changes)
Changelog

## `memory_wallet`

## [0.1.17](https://github.com/ifiokjr/wasm_solana/compare/memory_wallet@v0.1.16...memory_wallet@v0.1.17) - 2024-12-13 ### ๐ŸŽ‰ Added - add `test_utils_keypairs` crate - replace `test_utils` with `test_utils_insta`
## `wasm_client_solana`
## [0.7.1](https://github.com/ifiokjr/wasm_solana/compare/wasm_client_solana@v0.7.0...wasm_client_solana@v0.7.1) - 2024-12-13 ### ๐ŸŽ‰ Added - add `test_utils_keypairs` crate - replace `test_utils` with `test_utils_insta`
## `test_utils_insta`
## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/test_utils_insta@v0.1.0) - 2024-12-13 ### ๐ŸŽ‰ Added - replace `test_utils` with `test_utils_insta`
## `test_utils_keypairs`
## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/test_utils_keypairs@v0.1.0) - 2024-12-13 ### ๐ŸŽ‰ Added - add `test_utils_keypairs` crate
## `test_utils_solana`
## [0.6.2](https://github.com/ifiokjr/wasm_solana/compare/test_utils_solana@v0.6.1...test_utils_solana@v0.6.2) - 2024-12-13 ### ๐ŸŽ‰ Added - add `test_utils_keypairs` crate - replace `test_utils` with `test_utils_insta` - add keypair utilities for testing

--- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). Co-authored-by: kickjump-bot[bot] <179439731+kickjump-bot[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- crates/memory_wallet/Cargo.toml | 2 +- crates/memory_wallet/changelog.md | 7 +++++++ crates/test_utils_insta/changelog.md | 14 ++++++++++++++ crates/test_utils_keypairs/changelog.md | 14 ++++++++++++++ crates/test_utils_solana/Cargo.toml | 2 +- crates/test_utils_solana/changelog.md | 8 ++++++++ crates/wasm_client_solana/Cargo.toml | 2 +- crates/wasm_client_solana/changelog.md | 7 +++++++ 10 files changed, 59 insertions(+), 9 deletions(-) create mode 100644 crates/test_utils_insta/changelog.md create mode 100644 crates/test_utils_keypairs/changelog.md diff --git a/Cargo.lock b/Cargo.lock index 506687c..6e8b6c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3539,7 +3539,7 @@ dependencies = [ [[package]] name = "memory_wallet" -version = "0.1.16" +version = "0.1.17" dependencies = [ "anyhow", "assert2", @@ -8865,7 +8865,7 @@ dependencies = [ [[package]] name = "test_utils_solana" -version = "0.6.1" +version = "0.6.2" dependencies = [ "anyhow", "assert2", @@ -9801,7 +9801,7 @@ dependencies = [ [[package]] name = "wasm_client_solana" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow", "assert2", diff --git a/Cargo.toml b/Cargo.toml index ce43a6c..9cf924c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -93,13 +93,13 @@ example_client = { path = "./programs/example_client" } example_program = { path = "./programs/example_program" } # publishable crates -memory_wallet = { path = "./crates/memory_wallet", version = "0.1.16" } +memory_wallet = { path = "./crates/memory_wallet", version = "0.1.17" } test_utils_anchor = { path = "./crates/test_utils_anchor" } test_utils_insta = { path = "./crates/test_utils_insta", version = "0.1.0" } test_utils_keypairs = { path = "./crates/test_utils_keypairs", version = "0.1.0" } -test_utils_solana = { path = "./crates/test_utils_solana", version = "0.6.1" } +test_utils_solana = { path = "./crates/test_utils_solana", version = "0.6.2" } wasm_client_anchor = { path = "./crates/wasm_client_anchor", version = "0.8.0" } -wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.7.0" } +wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.7.1" } [workspace.metadata.bin] anchor-cli = { git = "https://github.com/coral-xyz/anchor", rev = "955e7ea", version = "0.30.1", bins = ["anchor"] } diff --git a/crates/memory_wallet/Cargo.toml b/crates/memory_wallet/Cargo.toml index 90e3490..bb83ad5 100644 --- a/crates/memory_wallet/Cargo.toml +++ b/crates/memory_wallet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "memory_wallet" -version = "0.1.16" +version = "0.1.17" authors = { workspace = true } categories = ["wasm"] edition = { workspace = true } diff --git a/crates/memory_wallet/changelog.md b/crates/memory_wallet/changelog.md index 0e704bc..8c8dd23 100644 --- a/crates/memory_wallet/changelog.md +++ b/crates/memory_wallet/changelog.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.17](https://github.com/ifiokjr/wasm_solana/compare/memory_wallet@v0.1.16...memory_wallet@v0.1.17) - 2024-12-13 + +### ๐ŸŽ‰ Added + +- add `test_utils_keypairs` crate +- replace `test_utils` with `test_utils_insta` + ## [0.1.16](https://github.com/ifiokjr/wasm_solana/compare/wallet_standard_wallets@v0.1.15...wallet_standard_wallets@v0.1.16) - 2024-12-12 ### ๐Ÿงช Testing diff --git a/crates/test_utils_insta/changelog.md b/crates/test_utils_insta/changelog.md new file mode 100644 index 0000000..10344c1 --- /dev/null +++ b/crates/test_utils_insta/changelog.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/test_utils_insta@v0.1.0) - 2024-12-13 + +### ๐ŸŽ‰ Added + +- replace `test_utils` with `test_utils_insta` diff --git a/crates/test_utils_keypairs/changelog.md b/crates/test_utils_keypairs/changelog.md new file mode 100644 index 0000000..a25b619 --- /dev/null +++ b/crates/test_utils_keypairs/changelog.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/test_utils_keypairs@v0.1.0) - 2024-12-13 + +### ๐ŸŽ‰ Added + +- add `test_utils_keypairs` crate diff --git a/crates/test_utils_solana/Cargo.toml b/crates/test_utils_solana/Cargo.toml index 5e3fa87..a6c7d4c 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.6.1" +version = "0.6.2" 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 5ac3b5a..15793ad 100644 --- a/crates/test_utils_solana/changelog.md +++ b/crates/test_utils_solana/changelog.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.2](https://github.com/ifiokjr/wasm_solana/compare/test_utils_solana@v0.6.1...test_utils_solana@v0.6.2) - 2024-12-13 + +### ๐ŸŽ‰ Added + +- add `test_utils_keypairs` crate +- replace `test_utils` with `test_utils_insta` +- add keypair utilities for testing + ## [0.6.1](https://github.com/ifiokjr/wasm_solana/compare/test_utils_solana@v0.6.0...test_utils_solana@v0.6.1) - 2024-12-12 ### ๐ŸŽ‰ Added diff --git a/crates/wasm_client_solana/Cargo.toml b/crates/wasm_client_solana/Cargo.toml index 393f7b1..88b799b 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.7.0" +version = "0.7.1" 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 038c06e..9f44f6c 100644 --- a/crates/wasm_client_solana/changelog.md +++ b/crates/wasm_client_solana/changelog.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1](https://github.com/ifiokjr/wasm_solana/compare/wasm_client_solana@v0.7.0...wasm_client_solana@v0.7.1) - 2024-12-13 + +### ๐ŸŽ‰ Added + +- add `test_utils_keypairs` crate +- replace `test_utils` with `test_utils_insta` + ## [0.7.0](https://github.com/ifiokjr/wasm_solana/compare/wasm_client_solana@v0.6.1...wasm_client_solana@v0.7.0) - 2024-12-12 ### ๐ŸŽ‰ Added