Skip to content

Commit

Permalink
Bump version: 1.6.0 → 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Mar 22, 2021
1 parent 74a0fa5 commit a605cf1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.6.0
current_version = 1.7.0
commit = True
tag = True

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

2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -51,7 +51,7 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/manhole

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

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -20,7 +20,7 @@
year = '2012-2021'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '1.6.0'
version = release = '1.7.0'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -85,7 +85,7 @@ def run(self):

setup(
name='manhole',
version='1.6.0',
version='1.7.0',
license='BSD 2-Clause License',
description='Manhole is in-process service that will accept unix domain socket connections and present the',
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/manhole/__init__.py
Expand Up @@ -11,7 +11,7 @@
import traceback
from contextlib import closing

__version__ = '1.6.0'
__version__ = '1.7.0'

try:
import signalfd
Expand Down

0 comments on commit a605cf1

Please sign in to comment.