Skip to content

Commit

Permalink
Bump version: 3.6.1 → 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed May 2, 2024
1 parent 047cccd commit 5689bae
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 = 3.6.1
current_version = 3.7.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_theme: furo
test_matrix_separate_coverage: 'yes'
tests_inside_package: 'no'
version: 3.6.1
version: 3.7.0
version_manager: bump2version
website: https://blog.ionelmc.ro
year_from: '2015'
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,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.6.1.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.7.0.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-hunter/compare/v3.6.1...master
:target: https://github.com/ionelmc/python-hunter/compare/v3.7.0...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import traceback

traceback.print_exc()
version = release = '3.6.1'
version = release = '3.7.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 @@ -113,7 +113,7 @@ def read(*names, **kwargs):
use_scm_version={
'local_scheme': 'dirty-tag',
'write_to': 'src/hunter/_version.py',
'fallback_version': '3.6.1',
'fallback_version': '3.7.0',
},
license='BSD-2-Clause',
description='Hunter is a flexible code tracing toolkit.',
Expand Down
2 changes: 1 addition & 1 deletion src/hunter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
try:
from ._version import version as __version__
except ImportError:
__version__ = '3.6.1'
__version__ = '3.7.0'

__all__ = (
'And',
Expand Down

0 comments on commit 5689bae

Please sign in to comment.