Skip to content

Commit a605cf1

Browse files
committed
Bump version: 1.6.0 → 1.7.0
1 parent 74a0fa5 commit a605cf1

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.bumpversion.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.6.0
2+
current_version = 1.7.0
33
commit = True
44
tag = True
55

@@ -18,3 +18,4 @@ replace = version = release = '{new_version}'
1818
[bumpversion:file:src/manhole/__init__.py]
1919
search = __version__ = '{current_version}'
2020
replace = __version__ = '{new_version}'
21+

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Overview
5151
:alt: Supported implementations
5252
:target: https://pypi.org/project/manhole
5353

54-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-manhole/v1.6.0.svg
54+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-manhole/v1.7.0.svg
5555
:alt: Commits since latest release
5656
:target: https://github.com/ionelmc/python-manhole/compare/v1.6.0...master
5757

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
year = '2012-2021'
2121
author = 'Ionel Cristian Mărieș'
2222
copyright = '{0}, {1}'.format(year, author)
23-
version = release = '1.6.0'
23+
version = release = '1.7.0'
2424

2525
pygments_style = 'trac'
2626
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def run(self):
8585

8686
setup(
8787
name='manhole',
88-
version='1.6.0',
88+
version='1.7.0',
8989
license='BSD 2-Clause License',
9090
description='Manhole is in-process service that will accept unix domain socket connections and present the',
9191
long_description='%s\n%s' % (

src/manhole/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import traceback
1212
from contextlib import closing
1313

14-
__version__ = '1.6.0'
14+
__version__ = '1.7.0'
1515

1616
try:
1717
import signalfd

0 commit comments

Comments
 (0)