From a3fcbca464d623786572587c312bdc56f339e949 Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Thu, 15 Feb 2024 15:11:42 +0000 Subject: [PATCH 1/2] chore: release notes 3.6.1 --- CHANGES.md | 12 +++++++++++- Cargo.lock | 2 +- VERSION | 2 +- engine-tests/src/utils/one_inch/mod.rs | 19 +++++++++++-------- engine/Cargo.toml | 2 +- 5 files changed, 25 insertions(+), 12 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 233c1fe09..da36f339c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.6.1] 2024-02-15 + +### Changes + +- Improved the format of a panic message by extending it with nonces from an account and a transaction + by [@aleksuss]. ([#898]) + +[#898]: https://github.com/aurora-is-near/aurora-engine/pull/898 + ## [3.6.0] 2024-02-06 ### Fixes @@ -608,7 +617,8 @@ struct SubmitResult { ## [1.0.0] - 2021-05-12 -[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.6.0...develop +[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.6.1...develop +[3.6.1]: https://github.com/aurora-is-near/aurora-engine/compare/3.6.0...3.6.1 [3.6.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.5.0...3.6.0 [3.5.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.4.0...3.5.0 [3.4.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.3.1...3.4.0 diff --git a/Cargo.lock b/Cargo.lock index 7725dd23b..d92b5f8ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -276,7 +276,7 @@ dependencies = [ [[package]] name = "aurora-engine" -version = "3.6.0" +version = "3.6.1" dependencies = [ "aurora-engine-hashchain", "aurora-engine-modexp", diff --git a/VERSION b/VERSION index 40c341bdc..9575d51ba 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.6.0 +3.6.1 diff --git a/engine-tests/src/utils/one_inch/mod.rs b/engine-tests/src/utils/one_inch/mod.rs index 51768a9d3..7e84a2947 100644 --- a/engine-tests/src/utils/one_inch/mod.rs +++ b/engine-tests/src/utils/one_inch/mod.rs @@ -1,3 +1,4 @@ +use bstr::ByteSlice; use std::path::{Path, PathBuf}; use std::process::Command; use std::sync::{Condvar, Mutex, Once}; @@ -32,25 +33,27 @@ pub fn download_and_compile_solidity_sources( } // install packages - let status = Command::new("/usr/bin/env") + let output = Command::new("/usr/bin/env") .current_dir(&sources_dir) .args(["yarn", "install"]) - .status() + .output() .unwrap(); assert!( - status.success(), - "Unsuccessful exit status while install hardhat dependencies: {status}" + output.status.success(), + "Unsuccessful exit status while install hardhat dependencies: {}", + String::from_utf8_lossy(&output.stdout), ); let hardhat = |command: &str| { - let status = Command::new("/usr/bin/env") + let output = Command::new("/usr/bin/env") .current_dir(&sources_dir) .args(["node_modules/hardhat/internal/cli/cli.js", command]) - .status() + .output() .unwrap(); assert!( - status.success(), - "Unsuccessful exit status while install while executing `{command}`: {status}", + output.status.success(), + "Unsuccessful exit status while install while executing `{command}`: {}", + String::from_utf8_lossy(&output.stdout) ); }; diff --git a/engine/Cargo.toml b/engine/Cargo.toml index b05740fa9..4e0358417 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aurora-engine" -version = "3.6.0" +version = "3.6.1" authors.workspace = true edition.workspace = true homepage.workspace = true From 81789cd4270d8ea4bb80f25ac712036c6eb86712 Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Thu, 15 Feb 2024 15:15:58 +0000 Subject: [PATCH 2/2] chore: remove occasionally added import --- engine-tests/src/utils/one_inch/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/engine-tests/src/utils/one_inch/mod.rs b/engine-tests/src/utils/one_inch/mod.rs index 7e84a2947..aaa780914 100644 --- a/engine-tests/src/utils/one_inch/mod.rs +++ b/engine-tests/src/utils/one_inch/mod.rs @@ -1,4 +1,3 @@ -use bstr::ByteSlice; use std::path::{Path, PathBuf}; use std::process::Command; use std::sync::{Condvar, Mutex, Once};