diff --git a/CHANGELOG.md b/CHANGELOG.md index e6df96e..e59f4e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ ## [Unreleased] +## [0.3.0] - 2024-10-12 + ### 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 @@ -45,7 +47,8 @@ - Initial release. -[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.2.1...HEAD +[Unreleased]: https://github.com/LiteSVM/litesvm/compare/v0.3.0...HEAD +[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 [0.1.0]: https://github.com/LiteSVM/litesvm/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index 2593264..ea87fd1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2206,7 +2206,7 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "litesvm" -version = "0.2.1" +version = "0.3.0" dependencies = [ "bincode", "criterion", @@ -2237,7 +2237,7 @@ dependencies = [ [[package]] name = "litesvm-loader" -version = "0.2.1" +version = "0.3.0" dependencies = [ "litesvm", "solana-sdk", @@ -2246,7 +2246,7 @@ dependencies = [ [[package]] name = "litesvm-token" -version = "0.2.1" +version = "0.3.0" dependencies = [ "litesvm", "smallvec", diff --git a/Cargo.toml b/Cargo.toml index 80d3551..b19f7b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["loader", "svm", "token"] [workspace.package] -version = "0.2.1" +version = "0.3.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/LiteSVM/litesvm" @@ -14,7 +14,7 @@ bincode = "1.3" criterion = "0.5" indexmap = "2.6" itertools = "0.12" -litesvm = { path = "svm", version = "0.2" } +litesvm = { path = "svm", version = "0.3" } log = "0.4" serde = "1.0" smallvec = "1.13"