From 93018920386ce01c041a347ac451398359da62b2 Mon Sep 17 00:00:00 2001 From: Bob Broderick <118225939+bbroder-algo@users.noreply.github.com> Date: Mon, 20 Mar 2023 10:35:57 -0400 Subject: [PATCH] version v0.24.0 (#693) --- CHANGELOG.md | 10 ++++++++-- setup.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76622f8e3..5157989b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,19 @@ ## Added +## Fixed + +## Changed + +# v0.24.0 + +## Added + * Clarify that `Approve` and `Reject` always exit in the documentation. ([#660](https://github.com/algorand/pyteal/pull/660)) * Added frame pointer support for router. ([#600](https://github.com/algorand/pyteal/pull/600)) * NOTE: a backwards incompatable change was imposed in this PR: previous `build_program` method in `Router` was exported and public, now this method is hidden. Use `compile_program` only. * Experimental source mapping capability. ([#650](https://github.com/algorand/pyteal/pull/650)) -## Fixed - ## Changed * Enable source maps using the new `FeatureGate` class. See `examples/applications/sourcemap.py` for a usage example. ([#687](https://github.com/algorand/pyteal/pull/687)) diff --git a/setup.py b/setup.py index 363c6e940..3785cbfd9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="pyteal", - version="0.23.0", + version="0.24.0", author="Algorand", author_email="pypiservice@algorand.com", description="Algorand Smart Contracts in Python",