Skip to content

Commit

Permalink
Bump version: 2.0.0 → 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Oct 22, 2023
1 parent 79866a6 commit 1e5a2e6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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 = 2.0.0
current_version = 3.0.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion .cookiecutterrc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ default_context:
sphinx_doctest: 'no'
sphinx_theme: sphinx-py3doc-enhanced-theme
test_matrix_separate_coverage: 'no'
version: 2.0.0
version: 3.0.0
version_manager: bump2version
website: https://blog.ionelmc.ro/
year_from: '2013'
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/tblib

.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-tblib/v2.0.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-tblib/v3.0.0.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-tblib/compare/v2.0.0...master
:target: https://github.com/ionelmc/python-tblib/compare/v3.0.0...master

.. end-badges
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
year = '2013-2022'
author = 'Ionel Cristian Mărieș'
copyright = f'{year}, {author}'
version = release = '2.0.0'
version = release = '3.0.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 @@ -13,7 +13,7 @@ def read(*names, **kwargs):

setup(
name='tblib',
version='2.0.0',
version='3.0.0',
license='BSD-2-Clause',
description='Traceback serialization library.',
long_description='{}\n{}'.format(
Expand Down
2 changes: 1 addition & 1 deletion src/tblib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from types import CodeType

__version__ = '2.0.0'
__version__ = '3.0.0'
__all__ = 'Traceback', 'TracebackParseError', 'Frame', 'Code'

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

0 comments on commit 1e5a2e6

Please sign in to comment.