Skip to content

Commit a6c63d8

Browse files
committed
Bump version: 3.4.3 → 3.5.0
1 parent 1168fa1 commit a6c63d8

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.4.3
2+
current_version = 3.5.0
33
commit = True
44
tag = True
55

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Overview
4747
:alt: Supported implementations
4848
:target: https://pypi.org/project/hunter
4949

50-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.4.3.svg
50+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.5.0.svg
5151
:alt: Commits since latest release
52-
:target: https://github.com/ionelmc/python-hunter/compare/v3.4.3...master
52+
:target: https://github.com/ionelmc/python-hunter/compare/v3.5.0...master
5353

5454

5555

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
version = release = get_distribution('hunter').version
3333
except Exception:
3434
traceback.print_exc()
35-
version = release = '3.4.3'
35+
version = release = '3.5.0'
3636

3737
pygments_style = 'trac'
3838
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def has_ext_modules(self):
118118
use_scm_version={
119119
'local_scheme': 'dirty-tag',
120120
'write_to': 'src/hunter/_version.py',
121-
'fallback_version': '3.4.3',
121+
'fallback_version': '3.5.0',
122122
},
123123
license='BSD-2-Clause',
124124
description='Hunter is a flexible code tracing toolkit.',

src/hunter/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
try:
4646
from ._version import version as __version__
4747
except ImportError:
48-
__version__ = '3.4.3'
48+
__version__ = '3.5.0'
4949

5050
__all__ = (
5151
'And',

0 commit comments

Comments
 (0)