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
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

## [Unreleased]

## [0.15.0] - 2026-07-22

### Added

- Add `LiteSVM::{set_epoch_stake, set_epoch_stakes, epoch_total_stake, epoch_stake}` so tests can configure values returned by the `sol_get_epoch_stake` syscall (previously always `0`). The per-vote map is the source of truth; the cluster total is maintained as its checked sum (overwrites adjust the total, overflow returns `LiteSVMError::EpochStakeOverflow`).
- Add `LiteSVM::{set_epoch_stake, set_epoch_stakes, epoch_total_stake, epoch_stake}` so tests can configure values returned by the `sol_get_epoch_stake` syscall (previously always `0`). The per-vote map is the source of truth; the cluster total is maintained as its checked sum (overwrites adjust the total, overflow returns `LiteSVMError::EpochStakeOverflow`) ([#383](https://github.com/LiteSVM/litesvm/pull/383)).

### Fixed

- Validate account locks even when sigverify is disabled, so transactions with duplicate or too many account locks are rejected consistently ([#381](https://github.com/LiteSVM/litesvm/pull/381)).

## [0.14.0] - 2026-07-13

Expand Down Expand Up @@ -279,7 +285,8 @@

- Initial release.

[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.14.0...HEAD
[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.15.0...HEAD
[0.15.0]: https://github.com/LiteSVM/litesvm/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/LiteSVM/litesvm/compare/v0.13.1...v0.14.0
[0.13.1]: https://github.com/LiteSVM/litesvm/compare/v0.13.0...v0.13.1
[0.13.0]: https://github.com/LiteSVM/litesvm/compare/v0.12.0...v0.13.0
Expand Down
10 changes: 5 additions & 5 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.14.0"
version = "0.15.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/LiteSVM/litesvm"
Expand All @@ -24,7 +24,7 @@ hex = "0.4.3"
indexmap = "2.12"
itertools = "0.14"
libsecp256k1 = "0.7.2"
litesvm = { path = "crates/litesvm", version = "0.14" }
litesvm = { path = "crates/litesvm", version = "0.15" }
log = "0.4"
napi = { version = "3.10.2", default-features = false }
napi-build = "2.3.2"
Expand Down
Loading