From 4111224161e739a453b79b0c355df77e6f02612b Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Thu, 18 Dec 2025 17:21:45 +0000 Subject: [PATCH 1/2] Prepare v0.3.36 --- 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 6d35b7b2..b6f66c28 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -21,6 +21,10 @@ To avail of fixes in an unreleased version, please download a ZIP file In progress (unreleased) ------------------------ + +v0.3.36 (2025-12-01) +-------------------- + * :gh:issue:`1237` :mod:`mitogen`: Re-declare Python 2.4 compatibility * :gh:issue:`1385` :mod:`ansible_mitogen`: Remove a use of ``ansible.module_utils.six`` diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 88e018d0..03694786 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, 36, 'dev') +__version__ = (0, 3, 36) #: This is :data:`False` in slave contexts. Previously it was used to prevent From 1d62a51810fcfdabb3cc55a039dc9f2712e337ed Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Thu, 18 Dec 2025 17:22:16 +0000 Subject: [PATCH 2/2] Begin 0.3.37dev --- mitogen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 03694786..fd811455 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, 36) +__version__ = (0, 3, 37, 'dev') #: This is :data:`False` in slave contexts. Previously it was used to prevent