From e670bf0ebdc546eea2c91a7361c2c6d405774781 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Thu, 18 Sep 2025 19:00:58 +0100 Subject: [PATCH 1/2] Prepare v0.3.29 --- 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 fc822498..a5017820 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.29 (2025-09-18) +-------------------- + * :gh:issue:`1287` Python 3.14 support * :gh:issue:`1287` tests: Bump dependencies diff --git a/mitogen/__init__.py b/mitogen/__init__.py index ab9be601..0a1e31dc 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, 29, 'dev') +__version__ = (0, 3, 29) #: This is :data:`False` in slave contexts. Previously it was used to prevent From 6071fb58c9cf71d681dd6c43b9c5c61408f9c66f Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Thu, 18 Sep 2025 19:01:36 +0100 Subject: [PATCH 2/2] Begin 0.3.30dev --- mitogen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 0a1e31dc..2f626053 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, 29) +__version__ = (0, 3, 30, 'dev') #: This is :data:`False` in slave contexts. Previously it was used to prevent