Skip to content

Commit d68c45a

Browse files
chore: release
1 parent 53ab809 commit d68c45a

File tree

13 files changed

+66
-22
lines changed

13 files changed

+66
-22
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/solana-address-book/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.1](https://github.com/macalinao/testsvm/compare/solana-address-book-v0.2.0...solana-address-book-v0.2.1) - 2025-10-14
11+
12+
### Other
13+
14+
- don't log address book on failures if they are expected
15+
1016
## [0.2.0](https://github.com/macalinao/testsvm/compare/solana-address-book-v0.1.1...solana-address-book-v0.2.0) - 2025-09-01
1117

1218
### Other

crates/solana-address-book/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "solana-address-book"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
description = "A library for managing and tracking Solana addresses used in transactions"
66
license = "Apache-2.0"

crates/testsvm-assertions/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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.1](https://github.com/macalinao/testsvm/compare/testsvm-assertions-v0.1.0...testsvm-assertions-v0.1.1) - 2025-10-14
11+
12+
### Other
13+
14+
- don't log address book on failures if they are expected
15+
- Adds with_program_error assertion
16+
1017
## [0.1.0](https://github.com/macalinao/testsvm/releases/tag/testsvm-assertions-v0.1.0) - 2025-09-01
1118

1219
### Other

crates/testsvm-assertions/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "testsvm-assertions"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2024"
55
license = "Apache-2.0"
66
authors = ["Ian Macalinao <[email protected]>"]
@@ -13,8 +13,8 @@ keywords = ["ian-macalinao", "solana", "svm", "assertions", "testsvm"]
1313
categories = ["development-tools::testing"]
1414

1515
[dependencies]
16-
testsvm-core = { version = "0.1.1", path = "../testsvm-core" }
17-
testsvm-spl = { version = "0.1.0", path = "../testsvm-spl" }
16+
testsvm-core = { version = "0.2.0", path = "../testsvm-core" }
17+
testsvm-spl = { version = "0.1.1", path = "../testsvm-spl" }
1818
anyhow = "1.0"
1919
litesvm = "0.6.1"
2020
solana-sdk = "2.2.1"

crates/testsvm-core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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.2.0](https://github.com/macalinao/testsvm/compare/testsvm-core-v0.1.1...testsvm-core-v0.2.0) - 2025-10-14
11+
12+
### Other
13+
14+
- get_pda_with_bump helper
15+
- don't log address book on failures if they are expected
16+
1017
## [0.1.1](https://github.com/macalinao/testsvm/releases/tag/testsvm-core-v0.1.1) - 2025-09-01
1118

1219
### Fixed

crates/testsvm-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "testsvm-core"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Ian Macalinao <[email protected]>"]
55
edition = "2024"
66
license = "Apache-2.0"
@@ -16,7 +16,7 @@ categories = ["development-tools::testing", "cryptography::cryptocurrencies"]
1616
anyhow = "1.0"
1717
litesvm = "0.6"
1818
solana-sdk = "2.2"
19-
solana-address-book = { path = "../solana-address-book", version = "0.2.0" }
19+
solana-address-book = { path = "../solana-address-book", version = "0.2.1" }
2020
anchor-lang = "0.31"
2121
anchor-utils = { path = "../anchor-utils", version = "0.1.0" }
2222
colored = "3"

crates/testsvm-quarry/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.1](https://github.com/macalinao/testsvm/compare/testsvm-quarry-v0.2.0...testsvm-quarry-v0.2.1) - 2025-10-14
11+
12+
### Fixed
13+
14+
- fix bad comment
15+
16+
### Other
17+
18+
- don't log address book on failures if they are expected
19+
- Don't re-export the testsvm prelude in testsvm-quarry
20+
- Expose TestMintWrapper in the testsvm-quarry prelude
21+
1022
## [0.2.0](https://github.com/macalinao/testsvm/compare/testsvm-quarry-v0.1.0...testsvm-quarry-v0.2.0) - 2025-09-01
1123

1224
### Fixed

crates/testsvm-quarry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "testsvm-quarry"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
license = "Apache-2.0"
66
authors = ["Ian Macalinao <[email protected]>"]
@@ -19,6 +19,6 @@ anchor-spl = { version = "0.31.1", features = ["token", "associated_token"] }
1919
litesvm = "0.6.1"
2020
solana-sdk = "2.2"
2121
solana-program = "2.2"
22-
testsvm = { version = "0.2.0", path = "../testsvm" }
22+
testsvm = { version = "0.2.1", path = "../testsvm" }
2323

2424
[dev-dependencies]

crates/testsvm-spl/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.1](https://github.com/macalinao/testsvm/compare/testsvm-spl-v0.1.0...testsvm-spl-v0.1.1) - 2025-10-14
11+
12+
### Other
13+
14+
- updated the following local packages: solana-address-book, testsvm-core
15+
1016
## [0.1.0](https://github.com/macalinao/testsvm/releases/tag/testsvm-spl-v0.1.0) - 2025-09-01
1117

1218
### Fixed

0 commit comments

Comments
 (0)