Skip to content

Commit e376516

Browse files
committed
Bump version: 3.0.4 → 3.0.5
1 parent 1be8f7c commit e376516

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.4
2+
current_version = 3.0.5
33
commit = True
44
tag = True
55

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Overview
5151
:alt: Supported implementations
5252
:target: https://pypi.org/project/hunter
5353

54-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.0.4.svg
54+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.0.5.svg
5555
:alt: Commits since latest release
56-
:target: https://github.com/ionelmc/python-hunter/compare/v3.0.4...master
56+
:target: https://github.com/ionelmc/python-hunter/compare/v3.0.5...master
5757

5858

5959

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
version = release = get_distribution('hunter').version
3535
except Exception:
3636
traceback.print_exc()
37-
version = release = '3.0.4'
37+
version = release = '3.0.5'
3838

3939
pygments_style = 'trac'
4040
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def _unavailable(self, e):
113113
use_scm_version={
114114
'local_scheme': 'dirty-tag',
115115
'write_to': 'src/hunter/_version.py',
116-
'fallback_version': '3.0.4',
116+
'fallback_version': '3.0.5',
117117
},
118118
license='BSD-2-Clause',
119119
description='Hunter is a flexible code tracing toolkit.',

src/hunter/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
try:
4343
from ._version import version as __version__
4444
except ImportError:
45-
__version__ = '3.0.4'
45+
__version__ = '3.0.5'
4646

4747
__all__ = (
4848
'And',

0 commit comments

Comments
 (0)