Skip to content

Commit

Permalink
Bump version: 3.0.5 → 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jan 18, 2020
1 parent dd1ba5b commit 4a298f5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.5
current_version = 3.1.0
commit = True
tag = True

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ Changelog
:class:`~hunter.predicates.From` activates).
* Changed :class:`~hunter.predicates.From` to pass a copy of event to the predicate.
The copy will have the ``depth`` and ``calls`` attributes adjusted to the point where :class:`~hunter.predicates.From` activated.
* Fixed a bunch of inconsistencies and bugs when using ``&`` and ``|`` operators with predicates.
* Fixed a bunch of broken fields on :meth:`detached events <hunter.event.Event.detach>`
(:attr:`~hunter.event.Event.function_object` and :attr:`~hunter.event.Event.arg`).
* Improved docstrings in various and added a configuration doc section.
* Improved testing (more coverage).

3.0.5 (2019-12-06)
------------------
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/hunter

.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.0.5.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.1.0.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-hunter/compare/v3.0.5...master
:target: https://github.com/ionelmc/python-hunter/compare/v3.1.0...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
version = release = get_distribution('hunter').version
except Exception:
traceback.print_exc()
version = release = '3.0.5'
version = release = '3.1.0'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _unavailable(self, e):
use_scm_version={
'local_scheme': 'dirty-tag',
'write_to': 'src/hunter/_version.py',
'fallback_version': '3.0.5',
'fallback_version': '3.1.0',
},
license='BSD-2-Clause',
description='Hunter is a flexible code tracing toolkit.',
Expand Down
2 changes: 1 addition & 1 deletion src/hunter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
try:
from ._version import version as __version__
except ImportError:
__version__ = '3.0.5'
__version__ = '3.1.0'

__all__ = (
'And',
Expand Down

0 comments on commit 4a298f5

Please sign in to comment.