diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a16aab17..e83179d21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Added +## Fixed + +## Changed + +# v0.23.0 + +## Added + * Improved error handling for tuple type mismatch: added information on position and expected type. ([#655](https://github.com/algorand/pyteal/pull/655)) * Added an `asdict()` method to `ast.router.BareCallActions`. ([#656](https://github.com/algorand/pyteal/pull/656)) @@ -9,8 +17,6 @@ * Fixed wrong encoding result in tuple get last item. ([#663](https://github.com/algorand/pyteal/pull/663)) -## Changed - # v0.22.0 ## Changed diff --git a/setup.py b/setup.py index 23eb34396..6f342f8d8 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="pyteal", - version="0.22.0", + version="0.23.0", author="Algorand", author_email="pypiservice@algorand.com", description="Algorand Smart Contracts in Python",