From 18adf5efe21fbbcf0494d1d275bc14fe88ec9208 Mon Sep 17 00:00:00 2001 From: gmalouf Date: Wed, 5 Jun 2024 15:29:28 +0000 Subject: [PATCH] bump up version to v2.6.0 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14ec9cfa..26e29c14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +# v2.6.0 + + + +## What's Changed +### Bugfixes +* fix: no timeout for urlopen issue #526 by @grzracz in https://github.com/algorand/py-algorand-sdk/pull/527 +* txns: Uses sp.min_fee if available by @jannotti in https://github.com/algorand/py-algorand-sdk/pull/530 +* fix: Fix initialization for `WrongAmountType` error by @algolog in https://github.com/algorand/py-algorand-sdk/pull/532 +* Fix: Fix indexer sync issue in cucumber tests by @jasonpaulos in https://github.com/algorand/py-algorand-sdk/pull/533 +### Enhancements +* Docs: Add missing pages for source map and dryrun results by @jasonpaulos in https://github.com/algorand/py-algorand-sdk/pull/520 +* DX: Keyreg bytes by @jannotti in https://github.com/algorand/py-algorand-sdk/pull/522 +* Testing: Add Python 3.12 to test matrix by @jasonpaulos in https://github.com/algorand/py-algorand-sdk/pull/534 +* Simulate: Support newer simulate options by @jasonpaulos in https://github.com/algorand/py-algorand-sdk/pull/537 +* Tests: Enable min-balance Cucumber tests. by @gmalouf in https://github.com/algorand/py-algorand-sdk/pull/539 +### Other +* Fix typographic error when printing offline participation transaction by @hsoerensen in https://github.com/algorand/py-algorand-sdk/pull/524 + +## New Contributors +* @hsoerensen made their first contribution in https://github.com/algorand/py-algorand-sdk/pull/524 +* @grzracz made their first contribution in https://github.com/algorand/py-algorand-sdk/pull/527 +* @algolog made their first contribution in https://github.com/algorand/py-algorand-sdk/pull/532 +* @gmalouf made their first contribution in https://github.com/algorand/py-algorand-sdk/pull/539 + +**Full Changelog**: https://github.com/algorand/py-algorand-sdk/compare/v2.5.0...v2.6.0 + # v2.5.0 diff --git a/setup.py b/setup.py index 70d6c854..f7fb11b3 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ description="Algorand SDK in Python", author="Algorand", author_email="pypiservice@algorand.com", - version="2.5.0", + version="2.6.0", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/algorand/py-algorand-sdk",