Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

## [Unreleased]

## [0.11.0] - 2026-03-30

### Added

- Add feature gate account support ([#308](https://github.com/LiteSVM/litesvm/pull/308)).
- Add custom syscall registration ([#309](https://github.com/LiteSVM/litesvm/pull/309)).

### Fixed

- Align rent checks and assertions with Solana behavior ([#304](https://github.com/LiteSVM/litesvm/pull/304)).
- Update `rent.exemption_threshold` based on feature gating ([#307](https://github.com/LiteSVM/litesvm/pull/307)).
- Load the `p-token` binary instead of `spl-token` when the feature gate is enabled ([#310](https://github.com/LiteSVM/litesvm/pull/310)).
- Treat upgradeable v3 programs without program data as `Closed` ([#311](https://github.com/LiteSVM/litesvm/pull/311)).
- Update transaction account lock limits based on the active feature set ([#312](https://github.com/LiteSVM/litesvm/pull/312)).

## [0.10.0] - 2026-02-26

### Added
Expand Down Expand Up @@ -197,7 +212,8 @@

- Initial release.

[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.10.0...HEAD
[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.11.0...HEAD
[0.11.0]: https://github.com/LiteSVM/litesvm/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/LiteSVM/litesvm/compare/v0.9.1...v0.10.0
[0.9.1]: https://github.com/LiteSVM/litesvm/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/LiteSVM/litesvm/compare/v0.8.2...v0.9.0
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["crates/*"]
exclude = ["crates/node-litesvm/tests/clock-example"]

[workspace.package]
version = "0.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/LiteSVM/litesvm"
Expand All @@ -25,7 +25,7 @@ hex = "0.4.3"
indexmap = "2.12"
itertools = "0.14"
libsecp256k1 = "0.6.0"
litesvm = { path = "crates/litesvm", version = "0.10" }
litesvm = { path = "crates/litesvm", version = "0.11" }
log = "0.4"
napi = { version = "3.8.3", default-features = false }
napi-build = "2.3.1"
Expand Down
Loading