Skip to content

Commit c6acd24

Browse files
chore: release (#31)
## πŸ€– 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) <details><summary><i><b>Changelog</b></i></summary><p> ## `memory_wallet` <blockquote> ## [0.1.17](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-13 ### <!-- 0 -->πŸŽ‰ Added - add `test_utils_keypairs` crate - replace `test_utils` with `test_utils_insta` </blockquote> ## `wasm_client_solana` <blockquote> ## [0.7.1](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-13 ### <!-- 0 -->πŸŽ‰ Added - add `test_utils_keypairs` crate - replace `test_utils` with `test_utils_insta` </blockquote> ## `test_utils_insta` <blockquote> ## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-12-13 ### <!-- 0 -->πŸŽ‰ Added - replace `test_utils` with `test_utils_insta` </blockquote> ## `test_utils_keypairs` <blockquote> ## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-12-13 ### <!-- 0 -->πŸŽ‰ Added - add `test_utils_keypairs` crate </blockquote> ## `test_utils_solana` <blockquote> ## [0.6.2](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-13 ### <!-- 0 -->πŸŽ‰ Added - add `test_utils_keypairs` crate - replace `test_utils` with `test_utils_insta` - add keypair utilities for testing </blockquote> </p></details> --- 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>
1 parent e7c7abe commit c6acd24

File tree

10 files changed

+59
-9
lines changed

10 files changed

+59
-9
lines changed

β€ŽCargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ example_client = { path = "./programs/example_client" }
9393
example_program = { path = "./programs/example_program" }
9494

9595
# publishable crates
96-
memory_wallet = { path = "./crates/memory_wallet", version = "0.1.16" }
96+
memory_wallet = { path = "./crates/memory_wallet", version = "0.1.17" }
9797
test_utils_anchor = { path = "./crates/test_utils_anchor" }
9898
test_utils_insta = { path = "./crates/test_utils_insta", version = "0.1.0" }
9999
test_utils_keypairs = { path = "./crates/test_utils_keypairs", version = "0.1.0" }
100-
test_utils_solana = { path = "./crates/test_utils_solana", version = "0.6.1" }
100+
test_utils_solana = { path = "./crates/test_utils_solana", version = "0.6.2" }
101101
wasm_client_anchor = { path = "./crates/wasm_client_anchor", version = "0.8.0" }
102-
wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.7.0" }
102+
wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.7.1" }
103103

104104
[workspace.metadata.bin]
105105
anchor-cli = { git = "https://github.com/coral-xyz/anchor", rev = "955e7ea", version = "0.30.1", bins = ["anchor"] }

β€Žcrates/memory_wallet/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "memory_wallet"
3-
version = "0.1.16"
3+
version = "0.1.17"
44
authors = { workspace = true }
55
categories = ["wasm"]
66
edition = { workspace = true }

β€Žcrates/memory_wallet/changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.17](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-13
11+
12+
### <!-- 0 -->πŸŽ‰ Added
13+
14+
- add `test_utils_keypairs` crate
15+
- replace `test_utils` with `test_utils_insta`
16+
1017
## [0.1.16](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
1118

1219
### <!-- 6 -->πŸ§ͺ Testing
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-12-13
11+
12+
### <!-- 0 -->πŸŽ‰ Added
13+
14+
- replace `test_utils` with `test_utils_insta`
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0](https://github.com/ifiokjr/wasm_solana/releases/tag/[email protected]) - 2024-12-13
11+
12+
### <!-- 0 -->πŸŽ‰ Added
13+
14+
- add `test_utils_keypairs` crate

β€Žcrates/test_utils_solana/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test_utils_solana"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
homepage = { workspace = true }

β€Žcrates/test_utils_solana/changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.2](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-13
11+
12+
### <!-- 0 -->πŸŽ‰ Added
13+
14+
- add `test_utils_keypairs` crate
15+
- replace `test_utils` with `test_utils_insta`
16+
- add keypair utilities for testing
17+
1018
## [0.6.1](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
1119

1220
### <!-- 0 -->πŸŽ‰ Added

β€Žcrates/wasm_client_solana/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm_client_solana"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = { workspace = true }
55
categories = ["wasm", "web-programming"]
66
edition = { workspace = true }

β€Žcrates/wasm_client_solana/changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.1](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-13
11+
12+
### <!-- 0 -->πŸŽ‰ Added
13+
14+
- add `test_utils_keypairs` crate
15+
- replace `test_utils` with `test_utils_insta`
16+
1017
## [0.7.0](https://github.com/ifiokjr/wasm_solana/compare/[email protected][email protected]) - 2024-12-12
1118

1219
### <!-- 0 -->πŸŽ‰ Added

0 commit comments

Comments
Β (0)