diff --git a/.mergify.yml b/.mergify.yml index 665ddc3d..56378a89 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -16,6 +16,13 @@ pull_request_rules: commit_message_template: | {{ title }} (#{{ number }}) {{ body }} + - name: backport patches to main branch + conditions: + - label=backport/main + actions: + backport: + branches: + - main - name: backport patches to v0.16.x branch conditions: - base=main diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aefd6c9..1bb1b502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,12 +36,12 @@ Ref: https://keepachangelog.com/en/1.0.0/ # Changelog -## Unreleased +## [v0.17.0] - 2022-06-27 ### State Machine Breaking -* (evm) [\#1128](https://github.com/tharsis/ethermint/pull/1128) Clear tx logs if tx failed in post processing hooks -* (evm) [\#1124](https://github.com/tharsis/ethermint/pull/1124) Reject non-replay-protected tx in `AnteHandler` to prevent replay attack +* (evm) [\#1128](https://github.com/evmos/ethermint/pull/1128) Clear tx logs if tx failed in post processing hooks +* (evm) [\#1124](https://github.com/evmos/ethermint/pull/1124) Reject non-replay-protected tx in `AnteHandler` to prevent replay attack ### API Breaking @@ -52,15 +52,23 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Improvements * (deps) [\#1147](https://github.com/evmos/ethermint/pull/1147) Bump Go version to `1.18`. -* (feemarket) [\#1120](https://github.com/evmos/ethermint/pull/1120) Make `min-gas-multiplier` parameter accept zero value * (feemarket) [\#1135](https://github.com/evmos/ethermint/pull/1135) Set lower bound of base fee to min gas price param * (evm) [\#1142](https://github.com/evmos/ethermint/pull/1142) Rename `RejectUnprotectedTx` to `AllowUnprotectedTxs` for consistency with go-ethereum. ### Bug Fixes -* (evm) [\#1118](https://github.com/evmos/ethermint/pull/1118) Fix `Type()` `Account` method `EmptyCodeHash` comparison * (rpc) [\#1138](https://github.com/evmos/ethermint/pull/1138) Fix GasPrice calculation with relation to `MinGasPrice` +## [v0.16.1] - 2022-06-09 + +### Improvements + +* (feemarket) [\#1120](https://github.com/evmos/ethermint/pull/1120) Make `min-gas-multiplier` parameter accept zero value + +### Bug Fixes + +* (evm) [\#1118](https://github.com/evmos/ethermint/pull/1118) Fix `Type()` `Account` method `EmptyCodeHash` comparison + ## [v0.16.0] - 2022-06-06 ### State Machine Breaking