Skip to content

Commit

Permalink
Bump version: 1.5.0 → 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jan 20, 2019
1 parent bfdab49 commit 6a519a1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.0
current_version = 1.6.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 CHANGELOG.rst
Expand Up @@ -2,7 +2,7 @@
Changelog
=========

1.6.0 (2019-01-16)
1.6.0 (2019-01-19)
------------------

* Testing improvements (changed some skips to xfail, added osx in Travis).
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -39,9 +39,9 @@ Overview
:alt: PyPI Package latest release
:target: https://pypi.org/project/manhole

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

.. |wheel| image:: https://img.shields.io/pypi/wheel/manhole.svg
:alt: PyPI Wheel
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -26,7 +26,7 @@
year = '2012-2019'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '1.5.0'
version = release = '1.6.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.5.0',
version='1.6.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.5.0'
__version__ = '1.6.0'

try:
import signalfd
Expand Down

0 comments on commit 6a519a1

Please sign in to comment.