From 8531f4bec1c316f27f85f047f03aa2a0531726ef Mon Sep 17 00:00:00 2001 From: Hang Su <87964331+ahangsu@users.noreply.github.com> Date: Mon, 13 Feb 2023 14:36:26 -0500 Subject: [PATCH] bump version number and changelog to 0.23.0 (#665) --- CHANGELOG.md | 10 ++++++++-- setup.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) 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",