Skip to content

Commit ba4d35c

Browse files
authored
Merge pull request #83 from tgoodlet/0.5.2_release
Update changelog and version for next patch release
2 parents 03ff32e + 2e1b5e9 commit ba4d35c

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

CHANGELOG.rst

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
0.5.2
2+
-----
3+
- fix bug where ``firstresult`` wrappers were being sent an incorrectly configured
4+
``_Result`` (a list was set instead of a single value). Add tests to check for
5+
this as well as ``_Result.force_result()`` behaviour. Thanks to `@tgoodlet`_
6+
for the PR `#72`_.
7+
8+
- fix incorrect ``getattr`` of ``DeprecationWarning`` from the ``warnings``
9+
module. Thanks to `@nicoddemus`_ for the PR `#77`_.
10+
11+
- hide ``pytest`` tracebacks in certain core routines. Thanks to
12+
`@nicoddemus`_ for the PR `#80`_.
13+
14+
.. _#72: https://github.com/pytest-dev/pluggy/pull/72
15+
.. _#77: https://github.com/pytest-dev/pluggy/pull/77
16+
.. _#80: https://github.com/pytest-dev/pluggy/pull/80
17+
118
0.5.1
219
-----
320
- fix a bug and add tests for case where ``firstresult`` hooks return
@@ -84,18 +101,12 @@
84101
.. _#11: https://github.com/pytest-dev/pluggy/issues/11
85102
.. _#4: https://github.com/pytest-dev/pluggy/issues/4
86103

87-
.. _@blueyed: https://github.com/blueyed
88-
.. _@nicoddemus: https://github.com/nicoddemus
89-
90-
91104
0.3.1
92105
-----
93106

94107
- avoid using deprecated-in-python3.5 getargspec method. Thanks
95108
`@mdboom`_.
96109

97-
.. _@mdboom: https://github.com/mdboom
98-
99110
0.3.0
100111
-----
101112

@@ -107,3 +118,6 @@ initial release
107118
.. _@MichalTHEDUDE: https://github.com/MichalTHEDUDE
108119
.. _@vodik: https://github.com/vodik
109120
.. _@RonnyPfannschmidt: https://github.com/RonnyPfannschmidt
121+
.. _@blueyed: https://github.com/blueyed
122+
.. _@nicoddemus: https://github.com/nicoddemus
123+
.. _@mdboom: https://github.com/mdboom

pluggy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import warnings
33
from .callers import _MultiCall, HookCallError, _raise_wrapfail, _Result
44

5-
__version__ = '0.5.2.dev'
5+
__version__ = '0.5.2'
66

77
__all__ = ["PluginManager", "PluginValidationError", "HookCallError",
88
"HookspecMarker", "HookimplMarker"]

0 commit comments

Comments
 (0)