Skip to content

Commit ce0474a

Browse files
committed
Bump version: 0.6.2 → 1.0.0
1 parent 6cebd65 commit ce0474a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[bumpversion]
2-
current_version = 0.6.2
2+
current_version = 1.0.0
33
files = setup.py src/manhole.py
44
commit = True
55
tag = True
6+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def read(*names, **kwargs):
1919

2020
setup(
2121
name="manhole",
22-
version="0.6.2",
22+
version="1.0.0",
2323
license="BSD",
2424
description="Inpection manhole for python applications. Connection is done via unix domain sockets.",
2525
long_description="%s\n%s" % (read("README.rst"), re.sub(":obj:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst"))),

src/manhole.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import signal
1313
import errno
1414

15-
__version__ = '0.6.2'
15+
__version__ = '1.0.0'
1616

1717
try:
1818
import signalfd

0 commit comments

Comments
 (0)