Skip to content

Commit

Permalink
Release 3.6.0 (#895)
Browse files Browse the repository at this point in the history
## 3.6.0 2024-02-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]: #881
[#882]: #882
[#883]: #883
[#885]: #885
[#888]: #888
[#889]: #889

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Guido Vranken <[email protected]>
Co-authored-by: Karim <[email protected]>
Co-authored-by: Roman Hodulák <[email protected]>
Co-authored-by: Michael Birch <[email protected]>
Co-authored-by: Michael Birch <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
7 people authored Feb 6, 2024
1 parent dc3f3c3 commit 7029a5c
Show file tree
Hide file tree
Showing 56 changed files with 1,647 additions and 1,035 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
etc/eth-contracts
etc/tests/uniswap
- name: Install dependencies
run: cargo make -V || cargo install cargo-make
run: cargo +stable make -V || cargo +stable install cargo-make
- name: Build main contract
run: |
case ${{ matrix.profile }} in
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
target/
key: ${{ matrix.profile }}-cargo-modexp-test
- name: Install dependencies
run: cargo make -V || cargo install cargo-make
run: cargo +stable make -V || cargo +stable install cargo-make
- name: Test ${{ matrix.profile }} bench-modexp
run: cargo make --profile ${{ matrix.profile }} bench-modexp

Expand Down
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-02-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
Loading

0 comments on commit 7029a5c

Please sign in to comment.