diff --git a/docs/src/release_notes.md b/docs/src/release_notes.md index a072246b51..4baeab8779 100644 --- a/docs/src/release_notes.md +++ b/docs/src/release_notes.md @@ -10,6 +10,22 @@ Fe is moving fast. Read up on all the latest improvements. **WARNING: All Fe releases are alpha releases and only meant to share the development progress with developers and enthusiasts. It is NOT yet ready for production usage.** [//]: # (towncrier release notes start) +## 0.18.0-alpha "Ruby" (2022-05-27) + +### Features + + +- Added support for parsing of attribute calls with generic arguments (e.g. `foo.bar()`). ([#719](https://github.com/ethereum/fe/issues/719)) + + +### Bugfixes + +- Fix a regression where the `stateMutability` field would not be included in the generated ABI ([#722](https://github.com/ethereum/fe/issues/722)) +- Fix two regressions introduced in `0.17.0` + * Properly lower right shift operation to yul's `sar` if operand is signed type + * Properly lower negate operation to call `safe_sub` ([#723](https://github.com/ethereum/fe/issues/723)) + + ## 0.17.0-alpha "Quartz" (2022-05-26) ### Features diff --git a/newsfragments/719.feature.md b/newsfragments/719.feature.md deleted file mode 100644 index 38ec7596cb..0000000000 --- a/newsfragments/719.feature.md +++ /dev/null @@ -1 +0,0 @@ -Added support for parsing of attribute calls with generic arguments (e.g. `foo.bar()`). diff --git a/newsfragments/722.bugfix.md b/newsfragments/722.bugfix.md deleted file mode 100644 index 681c3aac21..0000000000 --- a/newsfragments/722.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a regression where the `stateMutability` field would not be included in the generated ABI diff --git a/newsfragments/723.bugfix.md b/newsfragments/723.bugfix.md deleted file mode 100644 index 6d3f06f066..0000000000 --- a/newsfragments/723.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -* Properly lower right shift operation to yul's `sar` if operand is signed type -* Properly lower negate operation to call `safe_sub`