Skip to content

Commit

Permalink
Support bumpversion
Browse files Browse the repository at this point in the history
Makes it easier to bump all versions strings burried deep in some
directories with the single "bumpversion" command.
  • Loading branch information
tomschr committed May 28, 2016
1 parent 651b28c commit 6fbbadc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .bumpversion.cfg
@@ -0,0 +1,11 @@
[bumpversion]
current_version = 0.1.1
commit = True
tag = True

[bumpversion:file:setup.py]

[bumpversion:file:docs/conf.py]

[bumpversion:file:pike/__init__.py]

1 change: 1 addition & 0 deletions dev-requirements.txt
Expand Up @@ -5,3 +5,4 @@ twine
sphinx
sphinx_rtd_theme
sphinxcontrib-spelling
bumpversion
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '0.1.1'
# The full version, including alpha/beta/rc tags.
release = '0.1.1'
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions pike/__init__.py
@@ -0,0 +1 @@
__version__ = "0.1.1"

0 comments on commit 6fbbadc

Please sign in to comment.