From 154331e455a3153252e44fe41a9e0b3d08ccf477 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Wed, 20 Aug 2025 22:26:33 +0100 Subject: [PATCH 1/2] Prepare v0.3.27 --- docs/changelog.rst | 4 ++-- mitogen/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 407acc11..1b196b58 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -18,8 +18,8 @@ To avail of fixes in an unreleased version, please download a ZIP file `directly from GitHub `_. -In progress (unreleased) ------------------------- +v0.3.27 (2025-08-20) +-------------------- * :gh:issue:`1325` :mod:`mitogen`: Refactor ``mitogen.master.scan_code_imports()`` as diff --git a/mitogen/__init__.py b/mitogen/__init__.py index f1fdfb3c..2dab027a 100644 --- a/mitogen/__init__.py +++ b/mitogen/__init__.py @@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup. #: Library version as a tuple. -__version__ = (0, 3, 27, 'dev') +__version__ = (0, 3, 27) #: This is :data:`False` in slave contexts. Previously it was used to prevent From 07d10780105ffc7cd8e097f18701c12f97ac512e Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Wed, 20 Aug 2025 22:29:10 +0100 Subject: [PATCH 2/2] Begin v0.3.28dev --- docs/changelog.rst | 4 ++++ mitogen/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 1b196b58..70d411ee 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -18,6 +18,10 @@ To avail of fixes in an unreleased version, please download a ZIP file `directly from GitHub `_. +In progress (unreleased) +------------------------ + + v0.3.27 (2025-08-20) -------------------- diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 2dab027a..cc3cd425 100644 --- a/mitogen/__init__.py +++ b/mitogen/__init__.py @@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup. #: Library version as a tuple. -__version__ = (0, 3, 27) +__version__ = (0, 3, 28, 'dev') #: This is :data:`False` in slave contexts. Previously it was used to prevent