diff --git a/docs/release-notes.rst b/docs/release-notes.rst index c7d4d0edc9..5f62559558 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -3,6 +3,23 @@ Release Notes ############# +v0.2.4 +****** + +Date released: 03-08-2020 + +Non-breaking changes and improvements: + +- Improve EOF Exceptions (`#2115 `_) +- Improve exception messaging for type mismatches (`#2119 `_) +- Ignore trailing newline tokens (`#2120 `_) + +Fixes: + +- Fix ABI translations for structs that are returned from functions (`#2114 `_) +- Raise when items that are not types are called (`#2118 `_) +- Ensure hex and decimal AST nodes are serializable (`#2123 `_) + v0.2.3 ****** diff --git a/setup.py b/setup.py index 361898eee5..3d94d8a0be 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ setup( name="vyper", - version="0.2.3", + version="0.2.4", description="Vyper: the Pythonic Programming Language for the EVM", long_description=long_description, long_description_content_type="text/markdown",