Skip to content

Commit

Permalink
Release 0.4.0 (LiteSVM#117)
Browse files Browse the repository at this point in the history
* Release 0.4.0

* Fix readme

* Update Readme and remove the doc
  • Loading branch information
Aursen authored Dec 30, 2024
1 parent d9185f3 commit 1cc04f4
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

## [Unreleased]

## [0.4.0] - 2024-12-30

### Changed

- Bump Solana crates to 2.1 [(#96)](https://github.com/LiteSVM/litesvm/pull/96).
- Bump Solana crates to 2.1 ([#96](https://github.com/LiteSVM/litesvm/pull/96)).

### Added

- Add `LiteSVM::with_precompiles`.
- Add `LiteSVM::with_precompiles` ([#102](https://github.com/LiteSVM/litesvm/pull/102)).

### Fixed

Expand All @@ -18,7 +20,7 @@

### Added

- Make log_bytes_limit configurable [(#96)](https://github.com/LiteSVM/litesvm/pull/96).
- Make log_bytes_limit configurable ([#96](https://github.com/LiteSVM/litesvm/pull/96)).

### Changed

Expand Down Expand Up @@ -59,7 +61,8 @@

- Initial release.

[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/LiteSVM/litesvm/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/LiteSVM/litesvm/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/LiteSVM/litesvm/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/LiteSVM/litesvm/compare/v0.1.0...v0.2.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 @@ -3,7 +3,7 @@ resolver = "2"
members = ["crates/*"]

[workspace.package]
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/LiteSVM/litesvm"
Expand All @@ -16,7 +16,7 @@ ed25519-dalek = "1.0.1"
indexmap = "2.6"
itertools = "0.13"
libsecp256k1 = "0.6.0"
litesvm = { path = "crates/litesvm", version = "0.3" }
litesvm = { path = "crates/litesvm", version = "0.4" }
log = "0.4"
serde = "1.0"
smallvec = "1.13"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ assert_eq!(from_account.unwrap().lamports, 4936);
assert_eq!(to_account.unwrap().lamports, 64);
```

### Developing litesvm
### 🛠️ Developing litesvm

#### Run the tests

Expand Down
2 changes: 1 addition & 1 deletion crates/litesvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version.workspace = true
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
readme = "../README.md"
readme = "../../README.md"

[features]
internal-test = []
Expand Down
1 change: 0 additions & 1 deletion crates/litesvm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![doc = include_str!("../../../README.md")]
use itertools::Itertools;
use log::error;
use precompiles::load_precompiles;
Expand Down

0 comments on commit 1cc04f4

Please sign in to comment.