From ffbe168c79d9ef53fbcb6bc35aa9d969d0848a62 Mon Sep 17 00:00:00 2001 From: Oscar Benjamin Date: Fri, 3 Jul 2026 18:06:20 +0100 Subject: [PATCH] Release 0.9.0 --- README.md | 6 +++--- doc/source/build.rst | 4 ++-- doc/source/conf.py | 4 ++-- pyproject.toml | 2 +- src/flint/__init__.py | 2 +- src/flint/test/test_all.py | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 83e0d14c..45ef3a39 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Compatible versions: | python-flint | Release date | CPython | FLINT | Cython | |--------------|---------------|-------------|------------|------------------| -| `0.9.0` | ??? | `3.10-3.14` | `3.0-3.6` | `3.1-3.2?` | +| `0.9.0` | 3rd Jul 2026 | `3.10-3.14` | `3.0-3.6` | `3.1-3.2` | | `0.8.0` | 29th Aug 2025 | `3.11-3.14` | `3.0-3.3` | `3.1` only | | `0.7.0` | 16th Mar 2025 | `3.11-3.13` | `3.0-3.2` | `3.0.11-3.1.0a1` | | `0.6.0` | 1st Feb 2024 | `3.9-3.12` | `3.0` only | `3.0` only | @@ -163,8 +163,8 @@ experimental. CHANGELOG ========= -Next release (0.9.0)... ------------------------ +0.9.0 +----- Contributors (0.9.0): diff --git a/doc/source/build.rst b/doc/source/build.rst index e944aaf7..4fb9e3c9 100644 --- a/doc/source/build.rst +++ b/doc/source/build.rst @@ -85,10 +85,10 @@ Compatible versions: - FLINT - Cython * - 0.9.0 - - Not yet + - 3rd Jul 2026 - 3.10-3.14 - 3.0-3.6 - - 3.1-3.2? + - 3.1-3.2 * - 0.8.0 - 29th Aug 2025 - 3.11-3.14 diff --git a/doc/source/conf.py b/doc/source/conf.py index 6b232bfb..1bdff590 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,9 +52,9 @@ # built documents. # # The short X.Y version. -version = '0.8.0' +version = '0.9.0' # The full version, including alpha/beta/rc tags. -release = '0.8.0' +release = '0.9.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 9df22119..deed18df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "python-flint" description = "Bindings for FLINT" -version = "0.8.0" +version = "0.9.0" # This needs to be in sync with README, and CI config. requires-python = ">= 3.10" diff --git a/src/flint/__init__.py b/src/flint/__init__.py index 87155e8f..d764495a 100644 --- a/src/flint/__init__.py +++ b/src/flint/__init__.py @@ -48,7 +48,7 @@ Ordering, ) -__version__ = "0.8.0" +__version__ = "0.9.0" __all__ = [ diff --git a/src/flint/test/test_all.py b/src/flint/test/test_all.py index df409d7f..2b10111e 100644 --- a/src/flint/test/test_all.py +++ b/src/flint/test/test_all.py @@ -46,7 +46,7 @@ def test_pyflint(): - assert flint.__version__ == "0.8.0" + assert flint.__version__ == "0.9.0" ctx = flint.ctx assert str(ctx) == repr(ctx) == _default_ctx_string