From b8cfcae1132ebdd75e5b5a8879d2d550304a21fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Thu, 31 Aug 2017 23:23:58 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.4.0=20=E2=86=92=201.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/manhole/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8881381..a84d1e2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0 +current_version = 1.5.0 commit = True tag = True diff --git a/README.rst b/README.rst index 4c2b983..625fa27 100644 --- a/README.rst +++ b/README.rst @@ -53,9 +53,9 @@ Overview :alt: PyPI Package latest release :target: https://pypi.python.org/pypi/manhole -.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-manhole/v1.4.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-manhole/v1.5.0.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-manhole/compare/v1.4.0...master + :target: https://github.com/ionelmc/python-manhole/compare/v1.5.0...master .. |wheel| image:: https://img.shields.io/pypi/wheel/manhole.svg :alt: PyPI Wheel diff --git a/docs/conf.py b/docs/conf.py index 3be07dc..7b4e6ec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ year = '2012-2017' author = 'Ionel Cristian Mărieș' copyright = '{0}, {1}'.format(year, author) -version = release = '1.4.0' +version = release = '1.5.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 4c0d4f5..7129c69 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,7 @@ def run(self): setup( name='manhole', - version='1.4.0', + version='1.5.0', license='BSD 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 7b60183..8629b55 100644 --- a/src/manhole/__init__.py +++ b/src/manhole/__init__.py @@ -11,7 +11,7 @@ import traceback from contextlib import closing -__version__ = '1.4.0' +__version__ = '1.5.0' try: import signalfd