Skip to content

Commit 7029a5c

Browse files
aleksussguidovrankenkarim-enRomanHodulakbirchmd
authored
Release 3.6.0 (#895)
## 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] <support@github.com> Co-authored-by: Guido Vranken <guidovranken@users.noreply.github.com> Co-authored-by: Karim <karim@aurora.dev> Co-authored-by: Roman Hodulák <roman.hodulak@aurora.dev> Co-authored-by: Michael Birch <birchmd8@gmail.com> Co-authored-by: Michael Birch <michael.birch@aurora.dev> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent dc3f3c3 commit 7029a5c

56 files changed

Lines changed: 1647 additions & 1035 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
etc/eth-contracts
4141
etc/tests/uniswap
4242
- name: Install dependencies
43-
run: cargo make -V || cargo install cargo-make
43+
run: cargo +stable make -V || cargo +stable install cargo-make
4444
- name: Build main contract
4545
run: |
4646
case ${{ matrix.profile }} in
@@ -80,7 +80,7 @@ jobs:
8080
target/
8181
key: ${{ matrix.profile }}-cargo-modexp-test
8282
- name: Install dependencies
83-
run: cargo make -V || cargo install cargo-make
83+
run: cargo +stable make -V || cargo +stable install cargo-make
8484
- name: Test ${{ matrix.profile }} bench-modexp
8585
run: cargo make --profile ${{ matrix.profile }} bench-modexp
8686

CHANGES.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.6.0] 2024-02-06
11+
12+
### Fixes
13+
14+
- Fixed underflow in the modexp gas calculation by [@guidovranken]. ([#883])
15+
- Prevented subtraction underflow in th xcc module by [@guidovranken]. ([#888])
16+
- Fixed balance and gas overflows in the xcc module by [@guidovranken]. ([#889])
17+
18+
### Changes
19+
20+
- CI was updated by changing self-hosted runner to the GitHub heavy by [@aleksuss]. ([#881])
21+
- Removed a logic of fee calculation in the eth-connector by [@karim-en]. ([#882])
22+
- Version of the rust nightly was updated to 2023-12-15 by [@RomanHodulak]. ([#885])
23+
24+
[#881]: https://github.com/aurora-is-near/aurora-engine/pull/881
25+
[#882]: https://github.com/aurora-is-near/aurora-engine/pull/882
26+
[#883]: https://github.com/aurora-is-near/aurora-engine/pull/883
27+
[#885]: https://github.com/aurora-is-near/aurora-engine/pull/885
28+
[#888]: https://github.com/aurora-is-near/aurora-engine/pull/888
29+
[#889]: https://github.com/aurora-is-near/aurora-engine/pull/889
30+
1031
## [3.5.0] 2023-12-06
1132

1233
### Additions
@@ -587,8 +608,9 @@ struct SubmitResult {
587608

588609
## [1.0.0] - 2021-05-12
589610

590-
[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.5.0...develop
591-
[3.5.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.5.0...3.4.0
611+
[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/3.6.0...develop
612+
[3.6.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.5.0...3.6.0
613+
[3.5.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.4.0...3.5.0
592614
[3.4.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.3.1...3.4.0
593615
[3.3.1]: https://github.com/aurora-is-near/aurora-engine/compare/3.3.0...3.3.1
594616
[3.3.0]: https://github.com/aurora-is-near/aurora-engine/compare/3.2.0...3.3.0

0 commit comments

Comments
 (0)