Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 3.3.1 #99

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@

.. currentmodule:: pyfuse3

Unreleased Changes
==================
Release 3.3.1 (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.
Expand Down
4 changes: 2 additions & 2 deletions rst/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.1'
# The full version, including alpha/beta/rc tags.
release = version + ''

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
warnings.simplefilter('default')


PYFUSE3_VERSION = '3.3.0'
PYFUSE3_VERSION = '3.3.1'

def main():

Expand Down