From a605cf106f86a7bec299a0d567112071ba5ae81e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Mon, 22 Mar 2021 23:28:37 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.6.0=20=E2=86=92=201.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 ++- README.rst | 2 +- docs/conf.py | 2 +- setup.py | 2 +- src/manhole/__init__.py | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 785ffec..44783c0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0 +current_version = 1.7.0 commit = True tag = True @@ -18,3 +18,4 @@ replace = version = release = '{new_version}' [bumpversion:file:src/manhole/__init__.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' + diff --git a/README.rst b/README.rst index 6e806cc..4267b29 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 11e41c0..ec00666 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 = ['.'] diff --git a/setup.py b/setup.py index 25dbb6c..185ef62 100644 --- a/setup.py +++ b/setup.py @@ -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' % ( diff --git a/src/manhole/__init__.py b/src/manhole/__init__.py index 1c2a0da..2caa482 100644 --- a/src/manhole/__init__.py +++ b/src/manhole/__init__.py @@ -11,7 +11,7 @@ import traceback from contextlib import closing -__version__ = '1.6.0' +__version__ = '1.7.0' try: import signalfd