From c0ed664ba3fa26e469a587748a80e0582e9bb7a0 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 28 Aug 2024 04:29:03 +0200 Subject: [PATCH] bump version to 3.4.0, update CHANGES also: update (c) year in docs --- Changes.rst | 8 ++++++-- rst/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Changes.rst b/Changes.rst index 02629c9..4e5d8e7 100644 --- a/Changes.rst +++ b/Changes.rst @@ -4,8 +4,12 @@ .. currentmodule:: pyfuse3 -Unreleased Changes -================== +Release 3.4.0 (2024-08-28) +========================== + +* Cythonized with latest Cython 3.0.11 to support Python 3.13. + +* CI: also test python 3.13, run mypy. * Move ``_pyfuse3`` to ``pyfuse3._pyfuse3`` and add a compatibility wrapper for the old name. diff --git a/rst/conf.py b/rst/conf.py index a8b7c9d..2d699b7 100644 --- a/rst/conf.py +++ b/rst/conf.py @@ -53,14 +53,14 @@ # General information about the project. project = u'pyfuse3' -copyright = u'2010-2023, Nikolaus Rath' +copyright = u'2010-2024, Nikolaus Rath' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '3.3.0' +version = '3.4.0' # The full version, including alpha/beta/rc tags. release = version + '' diff --git a/setup.py b/setup.py index d3874e3..6219ba7 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ warnings.simplefilter('default') -PYFUSE3_VERSION = '3.3.0' +PYFUSE3_VERSION = '3.4.0' def main():