Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
include README.rst LICENSE.rst
recursive-include tests *.py

#recursive-include tests *.py
6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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**

Expand Down
13 changes: 5 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down