From 38b55672fe23f0d1d3bb113a9f94a1bc0c8d7ab6 Mon Sep 17 00:00:00 2001 From: Jason Paulos Date: Mon, 8 Nov 2021 16:25:56 -0800 Subject: [PATCH] Update to v0.9.1 --- CHANGELOG.md | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d09f38a..6e15ceecc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.9.1 + +## Added +* Documentation for exponent operator ([#134](https://github.com/algorand/pyteal/pull/134)) +* Documentation for using `Seq` with lists ([#135](https://github.com/algorand/pyteal/pull/135)) + +## Fixed +* Fixed use of wildcard import in Pylance ([#133](https://github.com/algorand/pyteal/pull/133)) + # 0.9.0 ## Added diff --git a/setup.py b/setup.py index f38c54795..22ef6a04b 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="pyteal", - version="0.9.0", + version="0.9.1", author="Algorand", author_email="pypiservice@algorand.com", description="Algorand Smart Contracts in Python",