Skip to content

Commit

Permalink
Release v2.9.2 (#786)
Browse files Browse the repository at this point in the history
## 2.9.2 2023-06-22

### Fixes

- Use ibig implemenation of modexp by @birchmd. (#778)

---------

Co-authored-by: Karim <[email protected]>
Co-authored-by: Michael Birch <[email protected]>
Co-authored-by: mandreyel <[email protected]>
Co-authored-by: Oleksandr Anyshchenko <[email protected]>
Co-authored-by: Alexey Lapitsky <[email protected]>
  • Loading branch information
6 people authored Jun 23, 2023
1 parent 733b1a2 commit a42ab7d
Show file tree
Hide file tree
Showing 71 changed files with 1,630 additions and 1,501 deletions.
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
/engine-sdk/ @aleksuss
/engine-standalone-storage/ @RomanHodulak
/engine-standalone-tracing/ @RomanHodulak
/engine-test-doubles/ @hskang9
/engine-tests/ @hskang9
/engine-test-doubles/ @joshuajbouw
/engine-tests/ @joshuajbouw
/engine-transactions/ @aleksuss
2 changes: 0 additions & 2 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ jobs:
- run: cargo make build-contracts
- name: Run Contract cargo clippy
run: cargo make clippy
- name: Run cargo clippy
run: cargo clippy
udeps:
name: Udeps
runs-on: [self-hosted, heavy]
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,29 @@ jobs:
run: |
cache-util save cargo_git cargo_registry yarn_cache
cache-util msave aurora-engine-target@generic@${{ hashFiles('**/Cargo.lock') }}:target
test_modexp:
name: Test modexp suite (mainnet, testnet)
runs-on: [ self-hosted, heavy ]
steps:
- name: Potential broken submodules fix
run: |
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || :
- name: Clone the repository
uses: actions/checkout@v3
- name: Restore cache
run: |
cache-util restore cargo_git cargo_registry yarn_cache
cache-util restore aurora-engine-target@generic@${{ hashFiles('**/Cargo.lock') }}:target
- name: Test mainnet bench-modexp
run: cargo make --profile mainnet bench-modexp
- name: Test testnet bench-modexp
run: cargo make --profile testnet bench-modexp
- name: Save cache
run: |
cache-util save cargo_git cargo_registry yarn_cache
cache-util msave aurora-engine-target@generic@${{ hashFiles('**/Cargo.lock') }}:target
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
11 changes: 10 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.9.2] 2023-06-22

### Fixes

- Use ibig implemenation of modexp by [@birchmd]. ([#778])

[#778]: https://github.com/aurora-is-near/aurora-engine/pull/778

## [2.9.1] 2023-05-11

### Changes
Expand Down Expand Up @@ -413,7 +421,8 @@ struct SubmitResult {

## [1.0.0] - 2021-05-12

[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.1...develop
[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.2...develop
[2.9.2]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.1...2.9.2
[2.9.1]: https://github.com/aurora-is-near/aurora-engine/compare/2.9.0...2.9.1
[2.9.0]: https://github.com/aurora-is-near/aurora-engine/compare/2.8.0...2.9.0
[2.8.0]: https://github.com/aurora-is-near/aurora-engine/compare/2.7.0...2.8.0
Expand Down
Loading

0 comments on commit a42ab7d

Please sign in to comment.