Skip to content

Commit a63402f

Browse files
committed
Bump version: 3.7.0 → 3.8.0
1 parent ab605ba commit a63402f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.7.0
2+
current_version = 3.8.0
33
commit = True
44
tag = True
55

.cookiecutterrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ default_context:
5454
sphinx_theme: "furo"
5555
test_matrix_separate_coverage: "yes"
5656
tests_inside_package: "no"
57-
version: "3.7.0"
57+
version: 3.8.0
5858
version_manager: "bump2version"
5959
website: "https://blog.ionelmc.ro"
6060
year_from: "2015"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Overview
4141
:alt: Supported implementations
4242
:target: https://pypi.org/project/hunter
4343

44-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.7.0.svg
44+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.8.0.svg
4545
:alt: Commits since latest release
46-
:target: https://github.com/ionelmc/python-hunter/compare/v3.7.0...master
46+
:target: https://github.com/ionelmc/python-hunter/compare/v3.8.0...master
4747

4848

4949

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import traceback
2929

3030
traceback.print_exc()
31-
version = release = '3.7.0'
31+
version = release = '3.8.0'
3232

3333
pygments_style = 'trac'
3434
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def read(*names, **kwargs):
121121
use_scm_version={
122122
'local_scheme': 'dirty-tag',
123123
'write_to': 'src/hunter/_version.py',
124-
'fallback_version': '3.7.0',
124+
'fallback_version': '3.8.0',
125125
},
126126
license='BSD-2-Clause',
127127
description='Hunter is a flexible code tracing toolkit.',

src/hunter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
try:
4444
from ._version import version as __version__
4545
except ImportError:
46-
__version__ = '3.7.0'
46+
__version__ = '3.8.0'
4747

4848
__all__ = (
4949
'And',

0 commit comments

Comments
 (0)