From 77c284a5c231f84c1ec4c2080841528170e0413c Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Mon, 28 Aug 2023 14:09:14 +0100 Subject: [PATCH] chore: update release notes in develop branch (#829) ## Description The PR just updates release notes in the develop branch and bumps `aurora-engine` version. --- CHANGES.md | 40 +++++++++++++++++++++++++++++++++++++++- Cargo.lock | 2 +- VERSION | 2 +- engine/Cargo.toml | 2 +- 4 files changed, 42 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6c5e77bf9..8b917e68c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,42 @@ 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 + +- Added a view transaction `factory_get_wnear_address` for returning address for the `wNEAR` ERC-20 contract by [@aleksuss]. ([#807]) + +### Fixes + +- Fixed a bug where standalone engine can crash on tracing transactions with too large contract deployment by [@birchmd]. ([#817]) +- Fixed a bug and performance improvements with unusual exponents in the `engine-modexp` crate by [@guidovranken]. ([#814]) + +[#817]: https://github.com/aurora-is-near/aurora-engine/pull/817 +[#814]: https://github.com/aurora-is-near/aurora-engine/pull/814 +[#807]: https://github.com/aurora-is-near/aurora-engine/pull/807 + ## [2.10.1] 2023-07-27 ### Fixes @@ -449,7 +485,9 @@ struct SubmitResult { ## [1.0.0] - 2021-05-12 -[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/2.10.1...develop +[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.0.0...develop +[3.0.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.0.0...2.10.2 +[2.10.2]: https://github.com/aurora-is-near/aurora-engine/compare/2.10.1...2.10.2 [2.10.1]: https://github.com/aurora-is-near/aurora-engine/compare/2.10.0...2.10.1 [2.10.0]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.3...2.10.0 [2.9.3]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.2...2.9.3 diff --git a/Cargo.lock b/Cargo.lock index 7d24c17e1..f56a1e775 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -327,7 +327,7 @@ dependencies = [ [[package]] name = "aurora-engine" -version = "2.10.1" +version = "3.0.0" dependencies = [ "aurora-engine-modexp", "aurora-engine-precompiles", diff --git a/VERSION b/VERSION index 8bbb6e406..4a36342fc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.10.1 +3.0.0 diff --git a/engine/Cargo.toml b/engine/Cargo.toml index 70485820a..4b553ea3b 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aurora-engine" -version = "2.10.1" +version = "3.0.0" authors.workspace = true edition.workspace = true homepage.workspace = true