diff --git a/DISTRIBUTE b/DISTRIBUTE index d47e8c7..b285f35 100644 --- a/DISTRIBUTE +++ b/DISTRIBUTE @@ -1,4 +1,6 @@ To build a distribution of this package, don't forget to rev the version in setup.py, add change log to end of README.md, and then: -python setup.py sdist bdist_wheel upload +python setup.py sdist bdist_wheel +twine upload --repository-url https://test.pypi.org/legacy/ dist/Dumper-* +twine upload dist/Dumper-* diff --git a/README.md b/README.md index 1099dcc..975734d 100644 --- a/README.md +++ b/README.md @@ -286,6 +286,7 @@ useful logging. CHANGELOG: +1.1.0: Added more supported versions of python and a test framework. 1.0.4: Fixed problem in Python 2 when using io.StringIO with dumper. 1.0.3: Fixed problems in Python 3 related to trying to use decode as member of str. 1.0.2: Include README.md and MANIFEST.in in the distribution. diff --git a/setup.py b/setup.py index 58fa133..c353fe1 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='1.0.4', + version='1.1.0', description='Tool to conveniently describe any Python datastructure', long_description=long_description,