Skip to content

Commit da00503

Browse files
authored
Merge pull request #657 from nose-devs/release-0.16.0
Prepare release of v0.16.0
2 parents d90af48 + c93ca65 commit da00503

2 files changed

Lines changed: 29 additions & 1 deletion

File tree

docs/changelog.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,34 @@ testsuites.
1313
Unreleased
1414
----------
1515

16+
0.16.0 (2026-03-01)
17+
-------------------
18+
19+
Added
20+
~~~~~
21+
22+
* Added official support for Python 3.14.
23+
24+
Changed
25+
~~~~~~~
26+
27+
* ``nose2`` now explicitly uses a multiprocessing context for the ``mp`` plugin,
28+
which ensures that it is isolated from any multiprocessing settings used by
29+
applications under test. This ensures that the ``fork`` start method is always
30+
used on POSIX systems. ``spawn`` is used on Windows. Thanks
31+
:user:`JimmyDurandWesolowski` and :user:`airtower-luna`!
32+
33+
Deprecated
34+
~~~~~~~~~~
35+
36+
* The ``coverage`` plugin is now deprecated, and is no longer tested on newer
37+
Python versions. It will be removed in a future version.
38+
39+
Removed
40+
~~~~~~~
41+
42+
* Removed support for Python 3.8.
43+
1644
0.15.1 (2024-05-31)
1745
-------------------
1846

nose2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from nose2.main import discover, main
22

3-
__version__ = "0.15.1"
3+
__version__ = "0.16.0"
44

55
__all__ = ("__version__", "discover", "main")

0 commit comments

Comments
 (0)