From 53de26bf8e4d3b72a28dc29f1f2b8816d7d20a6a Mon Sep 17 00:00:00 2001 From: Michael Diamant Date: Wed, 11 May 2022 10:32:56 -0400 Subject: [PATCH] Prep CHANGELOG for v0.13.0 (#333) --- CHANGELOG.md | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a635985de..686d7102d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# 0.13.0 + +## Added +* Add opcode support for ECDSA verify, decompress, and recover ([#307](https://github.com/algorand/pyteal/pull/307)). + +## Fixed +* Fix bug where `Continue` skips `While` condition check ([#332](https://github.com/algorand/pyteal/pull/332)). +* Fix `If` construction using builder syntax ([#329](https://github.com/algorand/pyteal/pull/329)). + +## Changed +* Correct multiple doc typos ([#324](https://github.com/algorand/pyteal/pull/324), [#330](https://github.com/algorand/pyteal/pull/330)). + # 0.12.1 ## Fixed diff --git a/setup.py b/setup.py index e723191ba..fa767d1e3 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="pyteal", - version="0.12.1", + version="0.13.0", author="Algorand", author_email="pypiservice@algorand.com", description="Algorand Smart Contracts in Python",