Skip to content

Commit

Permalink
Release 1.6.4. (#285)
Browse files Browse the repository at this point in the history
* Split to crates: engine, prelude, sdk (#243)
* Test for 1inch liquidity protocol (#274)
* Bump @openzeppelin/contracts from 4.3.1 to 4.3.2 in /etc/eth-contracts (#275)
* Fix deploy benchmark to use a realistic transaction (that actually writes data to the created account code) (#277)
* Fix json formatting in JsonValue serialization (#279)
* Update primitive-types dependency to 0.10 (#280)
* Fix block.timestamp (#287)

Co-authored-by: Evgeny Ukhanov <evgeny@aurora.dev>
Co-authored-by: Michael Birch <michael@aurora.dev>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
4 people committed Sep 29, 2021
1 parent 3eace8c commit 0fe4f05
Show file tree
Hide file tree
Showing 86 changed files with 1,998 additions and 1,095 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
- master
- develop
pull_request:
branches:
- "*"

name: Lints
jobs:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
- master
- develop
pull_request:
branches:
- "*"

name: Tests
jobs:
Expand Down
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@

# Visual Studio Code
.vscode/
.run/

# IDEA
.idea

.run/
# Editor backup files
*~

# Rust artifacts
/*.wasm
/target/
target/

# Solidity artifacts
artifacts/
Expand Down
33 changes: 21 additions & 12 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,40 +7,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.6.4] - 2021-09-29

### Changes

- Fix JSON formatting in `ft_metadata` method by [@birchmd].
- Fix a bug in `block.timestamp` (units should be seconds) by [@birchmd].

## [1.6.3] - 2021-09-14

### Changes

- Revert ERC20 admin address changes for the time being by [@joshuajbouw].
- Revert the ERC-20 admin address changes for the time being by [@joshuajbouw].

## [1.6.2] - 2021-09-13

### Changes

- ERC20 admin address has been changed to have a dedicated account by [@sept-en].
- Precompile promises were fixed that were broken in rust-blockchain/evm by [@joshuajbouw] and [@birchmd].
- Return format of `ft_balance_of` was fixed by [@joshuajbouw].
- Change the ERC-20 admin address to have a dedicated account by [@sept-en].
- Fix precompile promises that were broken in rust-blockchain/evm by
[@joshuajbouw] and [@birchmd].
- Fix the return format of `ft_balance_of` by [@joshuajbouw].

### Removed

- Testnet balancing `balance_evm_and_nep141` has been removed by [@birchmd].
- Remove Testnet balancing `balance_evm_and_nep141` by [@birchmd].

## [1.6.1] - 2021-08-23

### Breaking changes

- The `view` call has been correctly updated to return the Borsh
serialization of `TransactionStatus`. Previously, it was returning a
string with the result of the transaction by name.
- Update the `view` call to correctly return the Borsh serialization of
`TransactionStatus`. Previously, it returned a string with the result of
the transaction by name.

- The `ft_balance_of` result was changed as previously it was returning a
non-JSON string value `0`. This has been fixed to return `"0"`.
- Change the `ft_balance_of` result as previously it returned a non-JSON
string value `0`. This has been fixed to return `"0"`.

## [1.6.0] - 2021-08-13

### Breaking changes

- The transaction status of `submit` was changed as running out of gas,
- Change the transaction status of `submit` as running out of gas,
funds, or being out-of-the-offset are not fatal errors but failed
executions.

Expand Down Expand Up @@ -86,7 +94,8 @@ struct SubmitResult {

## [1.0.0] - 2021-05-12

[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/1.6.3...master
[Unreleased]: https://github.com/aurora-is-near/aurora-engine/compare/1.6.4...master
[1.6.4]: https://github.com/aurora-is-near/aurora-engine/compare/1.6.3...1.6.4
[1.6.3]: https://github.com/aurora-is-near/aurora-engine/compare/1.6.2...1.6.3
[1.6.2]: https://github.com/aurora-is-near/aurora-engine/compare/1.6.1...1.6.2
[1.6.1]: https://github.com/aurora-is-near/aurora-engine/compare/1.6.0...1.6.1
Expand Down
Loading

0 comments on commit 0fe4f05

Please sign in to comment.