Skip to content

Commit ff70b5e

Browse files
Release 3.0.2
1 parent 9a73f02 commit ff70b5e

File tree

8 files changed

+21
-9
lines changed

8 files changed

+21
-9
lines changed

CHANGES.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@ CHANGELOG
33

44
.. towncrier release notes start
55
6+
mirakuru 3.0.2 (2026-02-11)
7+
===========================
8+
9+
Bugfixes
10+
--------
11+
12+
- Ignore macOS psutil environ permission errors when scanning processes, preventing sporadic cleanup failures.
13+
14+
15+
Miscellaneus
16+
------------
17+
18+
- `#955 <https://github.com/dbfixtures/mirakuru/issues/955>`_, `#960 <https://github.com/dbfixtures/mirakuru/issues/960>`_
19+
- Lint required-version and classifiers within pyproject.toml
20+
- Small refactoring to test_tcp_executor in an attempt to avoid random Address already in use.
21+
22+
623
mirakuru 3.0.1 (2025-11-01)
724
===========================
825

mirakuru/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from mirakuru.pid import PidExecutor
3333
from mirakuru.tcp import TCPExecutor
3434

35-
__version__ = "3.0.1"
35+
__version__ = "3.0.2"
3636

3737
__all__ = (
3838
"Executor",

newsfragments/+143e55e6.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/+2959172e.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/+29b0fc0b.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/955.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/960.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mirakuru"
3-
version = "3.0.1"
3+
version = "3.0.2"
44
description = "Process executor (not only) for tests."
55
readme = "README.rst"
66
keywords = ["process", "executor", "tests", "orchestration"]
@@ -35,7 +35,7 @@ requires-python = ">= 3.10"
3535
[project.urls]
3636
"Source" = "https://github.com/dbfixtures/mirakuru"
3737
"Bug Tracker" = "https://github.com/dbfixtures/mirakuru/issues"
38-
"Changelog" = "https://github.com/dbfixtures/mirakuru/blob/v3.0.1/CHANGES.rst"
38+
"Changelog" = "https://github.com/dbfixtures/mirakuru/blob/v3.0.2/CHANGES.rst"
3939

4040
[build-system]
4141
requires = ["setuptools >= 77.0.3", "wheel"]
@@ -101,7 +101,7 @@ select = [
101101
# github_url = "https://github.com/<user or organization>/<project>/"
102102

103103
[tool.tbump.version]
104-
current = "3.0.1"
104+
current = "3.0.2"
105105

106106
# Example of a semver regexp.
107107
# Make sure this matches current_version before

0 commit comments

Comments
 (0)