Skip to content

Commit e3ba332

Browse files
committed
Bump version: 3.1.2 → 3.1.3
1 parent 771e8dc commit e3ba332

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-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.1.2
2+
current_version = 3.1.3
33
commit = True
44
tag = True
55

CHANGELOG.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22
Changelog
33
=========
44

5+
3.1.3 (2020-02-02)
6+
------------------
7+
8+
* Improved again the stdlib check to handle certain paths better.
9+
510
3.1.2 (2019-01-19)
611
------------------
712

8-
* Really fix the ``<frozen importlib.something`` stdlib check.
13+
* Really fixed the ``<frozen importlib.something`` stdlib check.
914

1015
3.1.1 (2019-01-19)
1116
------------------

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ Overview
4949
:alt: Supported implementations
5050
:target: https://pypi.org/project/hunter
5151

52-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.1.2.svg
52+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.1.3.svg
5353
:alt: Commits since latest release
54-
:target: https://github.com/ionelmc/python-hunter/compare/v3.1.2...master
54+
:target: https://github.com/ionelmc/python-hunter/compare/v3.1.3...master
5555

5656

5757

docs/conf.py

Lines changed: 1 addition & 1 deletion
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.1.2'
37+
version = release = '3.1.3'
3838

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

setup.py

Lines changed: 1 addition & 1 deletion
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.1.2',
116+
'fallback_version': '3.1.3',
117117
},
118118
license='BSD-2-Clause',
119119
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
@@ -42,7 +42,7 @@
4242
try:
4343
from ._version import version as __version__
4444
except ImportError:
45-
__version__ = '3.1.2'
45+
__version__ = '3.1.3'
4646

4747
__all__ = (
4848
'And',

0 commit comments

Comments
 (0)