We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57764e1 commit b0a570eCopy full SHA for b0a570e
.bumpversion.cfg
@@ -1,5 +1,6 @@
1
[bumpversion]
2
-current_version = 0.0.1
+current_version = 0.0.2
3
files = setup.py pypackager/__init__.py
4
commit = True
5
tag = True
6
+
pypackager/__init__.py
@@ -1 +1 @@
-__version__ = tuple(map(int, "0.0.1".split('.')))
+__version__ = tuple(map(int, "0.0.2".split('.')))
setup.py
@@ -15,7 +15,7 @@ def read(fname):
15
16
setup(
17
name="python-packager",
18
- version="0.0.1",
+ version="0.0.2",
19
description="A command-line tool to create Python Packages.",
20
long_description=read('README.rst'),
21
url='https://github.com/fcurella/python-packager',
0 commit comments