From e97ab2f5975ab8c02b278ce69a42982cbfb7648d Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Sun, 17 Mar 2024 15:57:12 +0000 Subject: [PATCH] Prepare v0.3.5 --- docs/changelog.rst | 4 ++-- docs/conf.py | 2 +- mitogen/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 126095fd..ead09d14 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -17,8 +17,8 @@ Release Notes To avail of fixes in an unreleased version, please download a ZIP file `directly from GitHub `_. -Unreleased ----------- +v0.3.5 (2024-03-17) +------------------- * :gh:issue:`987` Support Python 3.11 * :gh:issue:`885` Fix :py:exc:`PermissionError` in :py:mod:`importlib` when diff --git a/docs/conf.py b/docs/conf.py index 3a7fc002..fb9974cb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ import sys sys.path.append('.') -VERSION = '0.3.4' +VERSION = '0.3.5' author = u'Network Genomics' copyright = u'2021, the Mitogen authors' diff --git a/mitogen/__init__.py b/mitogen/__init__.py index db4e8b3e..d030b966 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, 5, 'dev0') +__version__ = (0, 3, 5) #: This is :data:`False` in slave contexts. Previously it was used to prevent