From f1f8ad11ee84f6994ad6a4f96e4b4a5c0c9cc106 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Tue, 7 Jan 2025 09:14:31 +0000 Subject: [PATCH 1/2] Prepare v0.3.20 --- 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 13a698fc..653e7971 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.20 (2025-01-07) +-------------------- * :gh:issue:`1079` :mod:`ansible_mitogen`: Fix :ans:mod:`wait_for_connection` timeout with templated ``ansible_python_interpreter`` diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 18932405..08a3bc58 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, 20, 'dev') +__version__ = (0, 3, 20) #: This is :data:`False` in slave contexts. Previously it was used to prevent From 3ee6a0ff935f6947ecd2cdfdcdc1a6a67a3dcae0 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Tue, 7 Jan 2025 09:16:33 +0000 Subject: [PATCH 2/2] Begin v0.3.21dev --- 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 653e7971..6aa1b01a 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.20 (2025-01-07) -------------------- diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 08a3bc58..0a34c21b 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, 20) +__version__ = (0, 3, 21, 'dev') #: This is :data:`False` in slave contexts. Previously it was used to prevent