diff --git a/erdpy/CHANGELOG.md b/erdpy/CHANGELOG.md index 71a799da..cb34fb80 100644 --- a/erdpy/CHANGELOG.md +++ b/erdpy/CHANGELOG.md @@ -7,6 +7,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how ## [Unreleased] - TBD +## [1.3.2] + - [Do not copy test wallets into the newly created contract (not necessary anymore)](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/134) + ## [1.3.1] - [Re-add the pattern erdpy/wallet/*.txt in MANIFEST.in. Was removed by mistake in a previous release.](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/133) diff --git a/erdpy/_version.py b/erdpy/_version.py index 9c73af26..f708a9b2 100644 --- a/erdpy/_version.py +++ b/erdpy/_version.py @@ -1 +1 @@ -__version__ = "1.3.1" +__version__ = "1.3.2" diff --git a/setup.py b/setup.py index a9c2fb07..c7b05a33 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ with open("README.md", "r") as fh: long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy" -VERSION = "1.3.1" +VERSION = "1.3.2" try: with open('./erdpy/_version.py', 'wt') as versionfile: