From 1e5a2e6bf1ec012fdaa7883a5e7843c968682a40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Sun, 22 Oct 2023 03:34:50 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.0=20=E2=86=92=203.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .cookiecutterrc | 2 +- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/tblib/__init__.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 09d7051..2658a5d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 3.0.0 commit = True tag = True diff --git a/.cookiecutterrc b/.cookiecutterrc index 6f91f74..6b22c96 100644 --- a/.cookiecutterrc +++ b/.cookiecutterrc @@ -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' diff --git a/README.rst b/README.rst index cefd5a5..49604e5 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 2169b97..c9f498a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 = ['.'] diff --git a/setup.py b/setup.py index 4226f9e..c5364a1 100755 --- a/setup.py +++ b/setup.py @@ -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( diff --git a/src/tblib/__init__.py b/src/tblib/__init__.py index 0ad19ed..70af7ff 100644 --- a/src/tblib/__init__.py +++ b/src/tblib/__init__.py @@ -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.+)", line (?P\d+)(, in (?P.+))?$')