From 8299ea49b824233c430ef8b74c06d96e68e83273 Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Mon, 28 Aug 2023 12:20:00 +0100 Subject: [PATCH] chore: update release notes in develop branch --- CHANGES.md | 21 +++++++++++++++++++++ Cargo.lock | 2 +- VERSION | 2 +- engine/Cargo.toml | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 24c57d0a2..27b763b35 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.0] 2023-08-28 + +### Fixes + +- Updated [SputnikVM](https://github.com/aurora-is-near/sputnikvm) dependency with bugfix in the `returndatacopy` + implementation and a performance improvement in accessing EVM memory by [@birchmd]. ([#826]) + +### Changes + +- BREAKING: `engine-standalone-storage` no longer automatically writes to the DB when `consume_message` is called. + It is up to downstream users of the library to commit the diff (after doing any validation for correctness) by [@birchmd]. ([#825]) + +### Additions + +- New crate for the so-called "hashchain" implementation. It will enable verification of Aurora blocks by light clients + in the future by [@birchmd]. ([#816]) + +[#816]: https://github.com/aurora-is-near/aurora-engine/pull/816 +[#825]: https://github.com/aurora-is-near/aurora-engine/pull/825 +[#826]: https://github.com/aurora-is-near/aurora-engine/pull/826 + ## [2.10.2] 2023-08-10 ### Changes diff --git a/Cargo.lock b/Cargo.lock index f4544d6e8..b534882a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -327,7 +327,7 @@ dependencies = [ [[package]] name = "aurora-engine" -version = "2.10.2" +version = "3.0.0" dependencies = [ "aurora-engine-modexp", "aurora-engine-precompiles", diff --git a/VERSION b/VERSION index c6436a853..4a36342fc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.10.2 +3.0.0 diff --git a/engine/Cargo.toml b/engine/Cargo.toml index bbd34fbc0..4b553ea3b 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aurora-engine" -version = "2.10.2" +version = "3.0.0" authors.workspace = true edition.workspace = true homepage.workspace = true