Skip to content

Commit 8b1e1a2

Browse files
committed
Bump version: 3.0.0 → 3.1.0
1 parent 5dddd6a commit 8b1e1a2

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 = 3.0.0
2+
current_version = 3.1.0
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: 'no'
4242
tests_inside_package: 'no'
43-
version: 3.0.0
43+
version: 3.1.0
4444
version_manager: bump2version
4545
website: https://blog.ionelmc.ro/
4646
year_from: '2013'

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Overview
4141
:alt: Supported implementations
4242
:target: https://pypi.org/project/tblib
4343

44-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-tblib/v3.0.0.svg
44+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-tblib/v3.1.0.svg
4545
:alt: Commits since latest release
46-
:target: https://github.com/ionelmc/python-tblib/compare/v3.0.0...master
46+
:target: https://github.com/ionelmc/python-tblib/compare/v3.1.0...master
4747

4848
.. end-badges
4949

docs/conf.py

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

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

setup.py

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

1414
setup(
1515
name='tblib',
16-
version='3.0.0',
16+
version='3.1.0',
1717
license='BSD-2-Clause',
1818
description='Traceback serialization library.',
1919
long_description='{}\n{}'.format(

src/tblib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import re
22
import sys
33

4-
__version__ = '3.0.0'
4+
__version__ = '3.1.0'
55
__all__ = 'Code', 'Frame', 'Traceback', 'TracebackParseError'
66

77
FRAME_RE = re.compile(r'^\s*File "(?P<co_filename>.+)", line (?P<tb_lineno>\d+)(, in (?P<co_name>.+))?$')

0 commit comments

Comments
 (0)