From 97cea5a48e9144f83ff4d7211c6d1c38bc42d014 Mon Sep 17 00:00:00 2001 From: Christian Verkerk Date: Wed, 13 May 2020 19:14:44 -0700 Subject: [PATCH] IMP final release 0.6.0 --- MANIFEST.in | 3 +-- README.rst | 6 ++++-- setup.py | 13 +++++-------- 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 50488ae..a434890 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,2 @@ include README.rst LICENSE.rst -recursive-include tests *.py - +#recursive-include tests *.py diff --git a/README.rst b/README.rst index da2ec33..3294fea 100644 --- a/README.rst +++ b/README.rst @@ -390,8 +390,10 @@ bumpversion is licensed under the MIT License - see the LICENSE.rst file for det Changes ======= -**unreleased** -**v0.5.4-dev** +**0.6.0** + +- Deprecation: publish package that links to the newer bump2version for seamless + upgrades (see: https://www.python.org/dev/peps/pep-0423/#id106) **v0.5.3** diff --git a/setup.py b/setup.py index 349441f..cc7c3f4 100644 --- a/setup.py +++ b/setup.py @@ -11,21 +11,18 @@ setup( name='bumpversion', - version='0.5.4-dev', + version='0.6.0', url='https://github.com/peritus/bumpversion', author='Filip Noetzel', author_email='filip+bumpversion@j03.de', license='MIT', - packages=['bumpversion'], + install_requires=[ + 'bump2version', + ], description=description, long_description=long_description, - entry_points={ - 'console_scripts': [ - 'bumpversion = bumpversion:main', - ] - }, classifiers=( - 'Development Status :: 4 - Beta', + 'Development Status :: 7 - Inactive', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent',