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.0 #893

Merged
merged 1 commit into from
Feb 6, 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
26 changes: 24 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.6.0] 2024-01-06

### Fixes

- Fixed underflow in the modexp gas calculation by [@guidovranken]. ([#883])
- Prevented subtraction underflow in th xcc module by [@guidovranken]. ([#888])
- Fixed balance and gas overflows in the xcc module by [@guidovranken]. ([#889])

### Changes

- CI was updated by changing self-hosted runner to the GitHub heavy by [@aleksuss]. ([#881])
- Removed a logic of fee calculation in the eth-connector by [@karim-en]. ([#882])
- Version of the rust nightly was updated to 2023-12-15 by [@RomanHodulak]. ([#885])

[#881]: https://github.com/aurora-is-near/aurora-engine/pull/881
[#882]: https://github.com/aurora-is-near/aurora-engine/pull/882
[#883]: https://github.com/aurora-is-near/aurora-engine/pull/883
[#885]: https://github.com/aurora-is-near/aurora-engine/pull/885
[#888]: https://github.com/aurora-is-near/aurora-engine/pull/888
[#889]: https://github.com/aurora-is-near/aurora-engine/pull/889

## [3.5.0] 2023-12-06

### Additions
Expand Down Expand Up @@ -587,8 +608,9 @@ struct SubmitResult {

## [1.0.0] - 2021-05-12

[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.5.0...develop
[3.5.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.5.0...3.4.0
[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.6.0...develop
[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
[3.3.1]: https://github.com/aurora-is-near/aurora-engine/compare/3.3.0...3.3.1
[3.3.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.2.0...3.3.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 Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ skip_core_tasks = true
CARGO = "cargo"
ENGINE_CARGO_TARGET = "wasm32-unknown-unknown"
SWEEP_DAYS = 30
BUILDER_HASH_COMMIT = "00226858199419aaa8c99f756bd192851666fb36" # https://hub.docker.com/r/nearprotocol/contract-builder/tags
BUILDER_HASH_COMMIT = "13430592a7be246dd5a29439791f4081e0107ff3" # https://hub.docker.com/r/nearprotocol/contract-builder/tags

[tasks.sweep]
category = "Cleanup"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.0
3.6.0
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.5.0"
version = "3.6.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
Loading