From 3f288f934a234378d3b3454074dc8f11d3f50138 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 7 Oct 2024 00:52:34 +0100 Subject: [PATCH 1/3] docs: Correct 0.3.11 release month Reports of Mitogen's time machine will have been greatly exaggerated. --- docs/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 120ff962..1ff86c59 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -29,7 +29,7 @@ Unreleased branch protections configuration. -v0.3.11 (2024-10-30) +v0.3.11 (2024-09-30) -------------------- * :gh:issue:`1127` :mod:`mitogen`: Consolidate mitogen backward compatibility From 298d28a650a2f154ce3db4bc98495eab964e0e7f Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 7 Oct 2024 00:53:10 +0100 Subject: [PATCH 2/3] Prep v0.3.12 --- 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 1ff86c59..1cb45127 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 `_. -Unreleased ----------- +v0.3.11 (2024-10-07) +-------------------- * :gh:issue:`1106` :mod:`ansible_mitogen`: Support for `ansible_ssh_password` connection variable, and templated SSH connection password. diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 1ec7cf09..003ea701 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, 12, 'dev') +__version__ = (0, 3, 12) #: This is :data:`False` in slave contexts. Previously it was used to prevent From 61b800781b1dea09d4ba782597815737b2b0dc8c Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 7 Oct 2024 00:56:06 +0100 Subject: [PATCH 3/3] Begin v0.3.13 development --- docs/changelog.rst | 5 +++++ mitogen/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 1cb45127..bf513752 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -18,6 +18,11 @@ To avail of fixes in an unreleased version, please download a ZIP file `directly from GitHub `_. +In Progress (unreleased) +------------------------ + + + v0.3.11 (2024-10-07) -------------------- diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 003ea701..8320f5e7 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, 12) +__version__ = (0, 3, 13, 'dev') #: This is :data:`False` in slave contexts. Previously it was used to prevent