From a66907ef4341db8e595f97f4a53413d6338f6c74 Mon Sep 17 00:00:00 2001 From: Jason Paulos Date: Mon, 22 Aug 2022 11:19:14 -0700 Subject: [PATCH] v0.17.0 (#515) --- CHANGELOG.md | 7 ++++--- setup.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7be2a664a..886c073c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,14 @@ # Unreleased +# 0.17.0 + ## Added -* Add the ability to insert comments in TEAL source file with the Comment method ([#410](https://github.com/algorand/pyteal/pull/410)) -* Static and Dynamic Byte Array convenience classes ([#500](https://github.com/algorand/pyteal/pull/500)) +* Static and Dynamic Byte Array convenience classes ([#500](https://github.com/algorand/pyteal/pull/500), [#514](https://github.com/algorand/pyteal/pull/514)) +* Add the ability to insert comments in TEAL source file with the `Comment` method ([#410](https://github.com/algorand/pyteal/pull/410)) * Add a `comment` keyword argument to the Assert expression that will place the comment immediately above the `assert` op in the resulting TEAL ([#510](https://github.com/algorand/pyteal/pull/510)) ## Fixed * Fix AST duplication bug in `String.set` when called with an `Expr` argument ([#508](https://github.com/algorand/pyteal/pull/508)) -* Modify ABI `DynamicBytes` and `StaticBytes` to support `router`/`subroutine` ([#514](https://github.com/algorand/pyteal/pull/514)) # 0.16.0 diff --git a/setup.py b/setup.py index fc8940126..c96c9671c 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="pyteal", - version="0.16.0", + version="0.17.0", author="Algorand", author_email="pypiservice@algorand.com", description="Algorand Smart Contracts in Python",