Skip to content

Commit

Permalink
Bump version: 1.4.0 → 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Aug 31, 2017
1 parent f601e71 commit b8cfcae
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.0
current_version = 1.5.0
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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' % (
Expand Down
2 changes: 1 addition & 1 deletion src/manhole/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import traceback
from contextlib import closing

__version__ = '1.4.0'
__version__ = '1.5.0'

try:
import signalfd
Expand Down

0 comments on commit b8cfcae

Please sign in to comment.