From e9b859729d995c29445972525b7a45854287568e Mon Sep 17 00:00:00 2001 From: Arthur Kepler <610274+excalq@users.noreply.github.com> Date: Tue, 3 Jan 2023 18:24:57 -0500 Subject: [PATCH] Bumped version to v2.0.0 --- CHANGELOG.md | 12 +++++++++++- setup.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3300e93..6d1ae2e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,6 @@ # v2.0.0 ## What's Changed - ### Breaking Changes * Remove v1 algod API (`algosdk/algod.py`) due to API end-of-life (2022-12-01). Instead, use v2 algod API (`algosdk/v2client/algod.py`). @@ -13,6 +12,17 @@ * Remove `mnemonic.to_public_key` in favor of `account.address_from_private_key`. * Remove logicsig templates, `algosdk/data/langspec.json` and all methods in `logic` depending on it. +### Bugfixes +* Fix: populate_foreign_array offset logic by @jgomezst in https://github.com/algorand/py-algorand-sdk/pull/406 + +### Enhancements +* v2: Breaking changes from v1 to v2.0.0 by @ahangsu in https://github.com/algorand/py-algorand-sdk/pull/415 +* v2: Delete more references to `langspec` by @algochoi in https://github.com/algorand/py-algorand-sdk/pull/426 +* LogicSig: Add LogicSig usage disclaimer by @michaeldiamant in https://github.com/algorand/py-algorand-sdk/pull/424 +* Infrastructure: Only package `algosdk` in `setup.py` by @algochoi in https://github.com/algorand/py-algorand-sdk/pull/428 +* Tests: Introduce type linting with mypy by @jdtzmn in https://github.com/algorand/py-algorand-sdk/pull/397 + + # v1.20.2 ## What's Changed diff --git a/setup.py b/setup.py index 96963f3b..933255bc 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ description="Algorand SDK in Python", author="Algorand", author_email="pypiservice@algorand.com", - version="v1.20.2", + version="v2.0.0", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/algorand/py-algorand-sdk",