From a6c63d8e803ca94c5d88a8206b40d854608dece9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= <contact@ionelmc.ro> Date: Sun, 11 Sep 2022 02:25:03 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.4.3=20=E2=86=92=203.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/hunter/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 82d54ca..0762eb1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.4.3 +current_version = 3.5.0 commit = True tag = True diff --git a/README.rst b/README.rst index 33c9d1f..eb9414e 100644 --- a/README.rst +++ b/README.rst @@ -47,9 +47,9 @@ Overview :alt: Supported implementations :target: https://pypi.org/project/hunter -.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.4.3.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.5.0.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-hunter/compare/v3.4.3...master + :target: https://github.com/ionelmc/python-hunter/compare/v3.5.0...master diff --git a/docs/conf.py b/docs/conf.py index 7a6fc67..0828f9e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,7 +32,7 @@ version = release = get_distribution('hunter').version except Exception: traceback.print_exc() - version = release = '3.4.3' + version = release = '3.5.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 2caf1b9..28f01ff 100755 --- a/setup.py +++ b/setup.py @@ -118,7 +118,7 @@ def has_ext_modules(self): use_scm_version={ 'local_scheme': 'dirty-tag', 'write_to': 'src/hunter/_version.py', - 'fallback_version': '3.4.3', + 'fallback_version': '3.5.0', }, license='BSD-2-Clause', description='Hunter is a flexible code tracing toolkit.', diff --git a/src/hunter/__init__.py b/src/hunter/__init__.py index 02ad70f..6f7db45 100644 --- a/src/hunter/__init__.py +++ b/src/hunter/__init__.py @@ -45,7 +45,7 @@ try: from ._version import version as __version__ except ImportError: - __version__ = '3.4.3' + __version__ = '3.5.0' __all__ = ( 'And',