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',