Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release notes 3.6.1 #899

Merged
merged 2 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.0
3.6.1
18 changes: 10 additions & 8 deletions engine-tests/src/utils/one_inch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,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)
);
};

Expand Down
2 changes: 1 addition & 1 deletion engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading