Skip to content

Commit

Permalink
Bump version: 3.3.7 → 3.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jun 23, 2021
1 parent 5c56333 commit c3d68b3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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.3.7
current_version = 3.3.8
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,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.3.7.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.3.8.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-hunter/compare/v3.3.7...master
:target: https://github.com/ionelmc/python-hunter/compare/v3.3.8...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
version = release = get_distribution('hunter').version
except Exception:
traceback.print_exc()
version = release = '3.3.7'
version = release = '3.3.8'

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 @@ -106,7 +106,7 @@ def _unavailable(self, e):
use_scm_version={
'local_scheme': 'dirty-tag',
'write_to': 'src/hunter/_version.py',
'fallback_version': '3.3.7',
'fallback_version': '3.3.8',
},
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 @@ -45,7 +45,7 @@
try:
from ._version import version as __version__
except ImportError:
__version__ = '3.3.7'
__version__ = '3.3.8'

__all__ = (
'And',
Expand Down

0 comments on commit c3d68b3

Please sign in to comment.