Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.5.1
-----
- fix a bug and add tests for case where ``firstresult`` hooks return
``None`` results. Thanks to `@RonnyPfannschmidt`_ and `@tgoodlet`
for the issue (`#68`_) and PR (`#69`_) respectively.

.. _#69: https://github.com/pytest-dev/pytest/pull/69
.. _#68: https://github.com/pytest-dev/pytest/issuses/68

0.5.0
-----

Expand Down Expand Up @@ -53,11 +62,6 @@
.. _#17: https://github.com/pytest-dev/pytest/issues/17
.. _#14: https://github.com/pytest-dev/pytest/issues/14

.. _@tgoodlet: https://github.com/tgoodlet
.. _@MichalTHEDUDE: https://github.com/MichalTHEDUDE
.. _@vodik: https://github.com/vodik
.. _@RonnyPfannschmidt: https://github.com/RonnyPfannschmidt


0.4.0
-----
Expand Down Expand Up @@ -93,6 +97,9 @@

initial release

.. contributors
.. _@hpk42: https://github.com/hpk42


.. _@tgoodlet: https://github.com/tgoodlet
.. _@MichalTHEDUDE: https://github.com/MichalTHEDUDE
.. _@vodik: https://github.com/vodik
.. _@RonnyPfannschmidt: https://github.com/RonnyPfannschmidt
2 changes: 1 addition & 1 deletion pluggy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import warnings
from .callers import _MultiCall, HookCallError, _raise_wrapfail, _Result

__version__ = '0.5.0'
__version__ = '0.5.1'

__all__ = ["PluginManager", "PluginValidationError", "HookCallError",
"HookspecMarker", "HookimplMarker"]
Expand Down