Skip to content

Commit 175f426

Browse files
committed
Bump version: 1.8.0 → 1.8.1
1 parent e667395 commit 175f426

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.8.0
2+
current_version = 1.8.1
33
commit = True
44
tag = True
55

.cookiecutterrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ default_context:
4040
sphinx_theme: furo
4141
test_matrix_separate_coverage: 'yes'
4242
tests_inside_package: 'no'
43-
version: 1.8.0
43+
version: 1.8.1
4444
version_manager: bump2version
4545
website: http://blog.ionelmc.ro
4646
year_from: '2012'

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Overview
4545
:alt: Supported implementations
4646
:target: https://pypi.org/project/manhole
4747

48-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-manhole/v1.8.0.svg
48+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-manhole/v1.8.1.svg
4949
:alt: Commits since latest release
50-
:target: https://github.com/ionelmc/python-manhole/compare/v1.8.0...master
50+
:target: https://github.com/ionelmc/python-manhole/compare/v1.8.1...master
5151

5252

5353

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
year = '2012-2024'
1616
author = 'Ionel Cristian Mărieș'
1717
copyright = f'{year}, {author}'
18-
version = release = '1.8.0'
18+
version = release = '1.8.1'
1919

2020
pygments_style = 'trac'
2121
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def read(*names, **kwargs):
8787

8888
setup(
8989
name='manhole',
90-
version='1.8.0',
90+
version='1.8.1',
9191
license='BSD-2-Clause',
9292
description='Manhole is in-process service that will accept unix domain socket connections and present the'
9393
'stacktraces for all threads and an interactive prompt.',

src/manhole/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import traceback
1010
from contextlib import closing
1111

12-
__version__ = '1.8.0'
12+
__version__ = '1.8.1'
1313

1414
from io import TextIOWrapper
1515

0 commit comments

Comments
 (0)