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

Release 1.6.4 #285

Merged
merged 9 commits into from
Sep 29, 2021
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
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