Skip to content

Commit c58916f

Browse files
committed
Release 0.11.0 (#314)
Co-authored-by: Aursen <aursen@users.noreply.github.com>
1 parent 8d895be commit c58916f

3 files changed

Lines changed: 22 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## [0.11.0] - 2026-03-30
6+
7+
### Added
8+
9+
- Add feature gate account support ([#308](https://github.com/LiteSVM/litesvm/pull/308)).
10+
- Add custom syscall registration ([#309](https://github.com/LiteSVM/litesvm/pull/309)).
11+
12+
### Fixed
13+
14+
- Align rent checks and assertions with Solana behavior ([#304](https://github.com/LiteSVM/litesvm/pull/304)).
15+
- Update `rent.exemption_threshold` based on feature gating ([#307](https://github.com/LiteSVM/litesvm/pull/307)).
16+
- Load the `p-token` binary instead of `spl-token` when the feature gate is enabled ([#310](https://github.com/LiteSVM/litesvm/pull/310)).
17+
- Treat upgradeable v3 programs without program data as `Closed` ([#311](https://github.com/LiteSVM/litesvm/pull/311)).
18+
- Update transaction account lock limits based on the active feature set ([#312](https://github.com/LiteSVM/litesvm/pull/312)).
19+
520
## [0.10.0] - 2026-02-26
621

722
### Added
@@ -197,7 +212,8 @@
197212

198213
- Initial release.
199214

200-
[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.10.0...HEAD
215+
[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.11.0...HEAD
216+
[0.11.0]: https://github.com/LiteSVM/litesvm/compare/v0.10.0...v0.11.0
201217
[0.10.0]: https://github.com/LiteSVM/litesvm/compare/v0.9.1...v0.10.0
202218
[0.9.1]: https://github.com/LiteSVM/litesvm/compare/v0.9.0...v0.9.1
203219
[0.9.0]: https://github.com/LiteSVM/litesvm/compare/v0.8.2...v0.9.0

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["crates/*"]
44
exclude = ["crates/node-litesvm/tests/clock-example"]
55

66
[workspace.package]
7-
version = "0.10.0"
7+
version = "0.11.0"
88
edition = "2021"
99
license = "Apache-2.0"
1010
repository = "https://github.com/LiteSVM/litesvm"
@@ -25,7 +25,7 @@ hex = "0.4.3"
2525
indexmap = "2.12"
2626
itertools = "0.14"
2727
libsecp256k1 = "0.6.0"
28-
litesvm = { path = "crates/litesvm", version = "0.10" }
28+
litesvm = { path = "crates/litesvm", version = "0.11" }
2929
log = "0.4"
3030
napi = { version = "3.8.3", default-features = false }
3131
napi-build = "2.3.1"

0 commit comments

Comments
 (0)