Skip to content

Commit 18878a9

Browse files
committed
Bump version: 3.0.1 → 3.0.2
1 parent bcbb219 commit 18878a9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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.1
2+
current_version = 3.0.2
33
commit = True
44
tag = True
55

CHANGELOG.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
Changelog
33
=========
44

5-
3.0.2 (2019-10-04)
5+
3.0.2 (2019-10-10)
66
------------------
77

8-
* Fixed setting stream from ``PYTHONHUNTERCONFIG`` environment variable.
8+
* Fixed setting ``stream`` from ``PYTHONHUNTERCONFIG`` environment variable.
99
* Fixed a couple minor documentation issues.
1010

1111
3.0.1 (2019-06-17)

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ Overview
3939
:alt: PyPI Package latest release
4040
:target: https://pypi.org/project/hunter
4141

42-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.0.1.svg
42+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.0.2.svg
4343
:alt: Commits since latest release
44-
:target: https://github.com/ionelmc/python-hunter/compare/v3.0.1...master
44+
:target: https://github.com/ionelmc/python-hunter/compare/v3.0.2...master
4545

4646
.. |wheel| image:: https://img.shields.io/pypi/wheel/hunter.svg
4747
:alt: PyPI Wheel

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
version = release = get_distribution('hunter').version
3636
except Exception:
3737
traceback.print_exc()
38-
version = release = '3.0.1'
38+
version = release = '3.0.2'
3939

4040
pygments_style = 'trac'
4141
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.1',
116+
'fallback_version': '3.0.2',
117117
},
118118
license='BSD 2-Clause License',
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.1'
45+
__version__ = '3.0.2'
4646

4747
__all__ = (
4848
'And',

0 commit comments

Comments
 (0)