From 016dc7293ea9d725f7886fef8e064e43fd0c8906 Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Mon, 23 Oct 2023 18:58:16 +0100 Subject: [PATCH] chore: release notes 3.3.0 --- CHANGES.md | 8 +++++++- Cargo.lock | 2 +- VERSION | 2 +- engine-types/src/types/wei.rs | 4 ---- engine/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e5ef7f313..fb2b2454a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.3.0] 2023-10-23 + ### Changes - Changed the logic of cost calculation in Silo mode. Specifically, the fixed cost has been replaced with a fixed amount of gas per transaction by [@aleksuss]. ([#854]) +- `near-workspaces-rs` has been updated to 0.8.0 by [@aleksuss]. ([#855]) + [#854]: https://github.com/aurora-is-near/aurora-engine/pull/854 +[#854]: https://github.com/aurora-is-near/aurora-engine/pull/855 ## [3.2.0] 2023-10-17 @@ -533,7 +538,8 @@ struct SubmitResult { ## [1.0.0] - 2021-05-12 -[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.2.0...develop +[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.3.0...develop +[3.3.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.2.0...3.3.0 [3.2.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.1.0...3.2.0 [3.1.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.0.0...3.1.0 [3.0.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.0.0...2.10.2 diff --git a/Cargo.lock b/Cargo.lock index d846f1c89..d123dac27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -279,7 +279,7 @@ dependencies = [ [[package]] name = "aurora-engine" -version = "3.2.0" +version = "3.3.0" dependencies = [ "aurora-engine-hashchain", "aurora-engine-modexp", diff --git a/VERSION b/VERSION index 944880fa1..15a279981 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.2.0 +3.3.0 diff --git a/engine-types/src/types/wei.rs b/engine-types/src/types/wei.rs index 1305e0ca7..fbd32708d 100644 --- a/engine-types/src/types/wei.rs +++ b/engine-types/src/types/wei.rs @@ -159,10 +159,6 @@ impl Wei { self.0.checked_add(rhs.0).map(Self) } - pub fn checked_mul(self, rhs: Self) -> Option { - self.0.checked_mul(rhs.0).map(Self) - } - /// Try convert U256 to u128 with checking overflow. /// NOTICE: Error can contain only overflow pub fn try_into_u128(self) -> Result { diff --git a/engine/Cargo.toml b/engine/Cargo.toml index b65bef5ee..342d67c8c 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aurora-engine" -version = "3.2.0" +version = "3.3.0" authors.workspace = true edition.workspace = true homepage.workspace = true