From b12aa1e209fc453535a08e5df012220b56a67100 Mon Sep 17 00:00:00 2001 From: gmalouf Date: Wed, 5 Jun 2024 15:29:28 +0000 Subject: [PATCH 1/2] 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", From 47d69fd73a953e6bfef541a6aab49fa830ef872f Mon Sep 17 00:00:00 2001 From: jasonpaulos Date: Thu, 6 Jun 2024 18:36:53 +0000 Subject: [PATCH 2/2] bump up version to v2.6.1 --- CHANGELOG.md | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26e29c14..412efb7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +# v2.6.1 + + + +## What's Changed +### Bugfixes +* algod: Even in the face of urllib.error.HTTPError, return the json by @jannotti in https://github.com/algorand/py-algorand-sdk/pull/529 +* Fix: Pass args to underlying `kmd_request` function, including timeout by @jasonpaulos in https://github.com/algorand/py-algorand-sdk/pull/545 + + +**Full Changelog**: https://github.com/algorand/py-algorand-sdk/compare/v2.6.0...v2.6.1 + # v2.6.0 diff --git a/setup.py b/setup.py index f7fb11b3..a30301cf 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.6.0", + version="2.6.1", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/algorand/py-algorand-sdk",