diff --git a/MANIFEST.in b/MANIFEST.in index 44d09637..d2b274c4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include erdpy/projects/*.txt include erdpy/projects/*.json +include erdpy/wallet/*.txt diff --git a/erdpy/CHANGELOG.md b/erdpy/CHANGELOG.md index bfabd0d8..71a799da 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.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) + ## [1.3.0] - [Prepare integration with erdjs-snippets (from templates)](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/126) - [Move test wallets to a separate repository. Handle them as an erdpy dependency.](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/127) diff --git a/erdpy/_version.py b/erdpy/_version.py index 67bc602a..9c73af26 100644 --- a/erdpy/_version.py +++ b/erdpy/_version.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.3.1" diff --git a/setup.py b/setup.py index 35c012ea..a9c2fb07 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.0" +VERSION = "1.3.1" try: with open('./erdpy/_version.py', 'wt') as versionfile: