Skip to content

Commit

Permalink
Bump version: 0.6.2 → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Oct 13, 2014
1 parent 6cebd65 commit ce0474a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[bumpversion]
current_version = 0.6.2
current_version = 1.0.0
files = setup.py src/manhole.py
commit = True
tag = True

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def read(*names, **kwargs):

setup(
name="manhole",
version="0.6.2",
version="1.0.0",
license="BSD",
description="Inpection manhole for python applications. Connection is done via unix domain sockets.",
long_description="%s\n%s" % (read("README.rst"), re.sub(":obj:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst"))),
Expand Down
2 changes: 1 addition & 1 deletion src/manhole.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import signal
import errno

__version__ = '0.6.2'
__version__ = '1.0.0'

try:
import signalfd
Expand Down

0 comments on commit ce0474a

Please sign in to comment.