From 30deed3c96878011e041a0442cb53c30b06b05de Mon Sep 17 00:00:00 2001 From: Matthew Wardrop Date: Sun, 9 Oct 2022 13:27:01 -0700 Subject: [PATCH] 0.5.3 --- doc/changes.rst | 9 +++++++++ patsy/version.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/changes.rst b/doc/changes.rst index 2cbf18c..6314ccd 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -8,6 +8,15 @@ All Patsy releases are archived at Zenodo: .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.592075.svg :target: https://doi.org/10.5281/zenodo.592075 +v0.5.3 +------ + +* Officially add support for Python 3.10 and 3.11, and extend test coverage to + include these releases. +* Fix handling of future interpreter features that no longer have a mandatory + release version, as for the `annotations` feature (See `#187 + `__ for details.) + v0.5.2 ------ diff --git a/patsy/version.py b/patsy/version.py index 788752e..e2276fa 100644 --- a/patsy/version.py +++ b/patsy/version.py @@ -17,4 +17,4 @@ # want. (Contrast with the special suffix 1.0.0.dev, which sorts *before* # 1.0.0.) -__version__ = "0.5.2+dev" +__version__ = "0.5.3"