From 39b6c6ba9637984e95b862db82f164b432cd524d Mon Sep 17 00:00:00 2001 From: Jason Paulos Date: Tue, 31 Aug 2021 12:05:09 -0700 Subject: [PATCH] v0.8.0 --- CHANGELOG.md | 6 +++++- setup.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 452ba2deb..ba90fdc28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Future +# 0.8.0 ## Added * Support for new TEAL 4 features: @@ -18,6 +18,10 @@ int and byte constants in the most efficient way to reduce program size ([#57](h * Fixed `NaryExpr.__str__` method ([#102](https://github.com/algorand/pyteal/pull/102)). ## Changed +* **WARNING**: Due to code generation changes required to support TEAL 4 loops and subroutines, + programs compiled with this version will likely produce different TEAL code than previous + versions, but their functionality will be the same. Be aware that even small differences in + generated TEAL code will change the address associated with escrow LogicSig contracts. * Improved crypto cost docs ([#81](https://github.com/algorand/pyteal/pull/81)). * Applied code formatter ([#100](https://github.com/algorand/pyteal/pull/100)). diff --git a/setup.py b/setup.py index 4ba4e015e..0f977568e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="pyteal", - version="0.8.0.dev", + version="0.8.0", author="Algorand", author_email="pypiservice@algorand.com", description="Algorand Smart Contracts in Python",