Skip to content

Commit 1ac8135

Browse files
Merge pull request #412 from oscarbenjamin/pr_release_090
Release 0.9.0
2 parents e7b471f + ffbe168 commit 1ac8135

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Compatible versions:
144144

145145
| python-flint | Release date | CPython | FLINT | Cython |
146146
|--------------|---------------|-------------|------------|------------------|
147-
| `0.9.0` | ??? | `3.10-3.14` | `3.0-3.6` | `3.1-3.2?` |
147+
| `0.9.0` | 3rd Jul 2026 | `3.10-3.14` | `3.0-3.6` | `3.1-3.2` |
148148
| `0.8.0` | 29th Aug 2025 | `3.11-3.14` | `3.0-3.3` | `3.1` only |
149149
| `0.7.0` | 16th Mar 2025 | `3.11-3.13` | `3.0-3.2` | `3.0.11-3.1.0a1` |
150150
| `0.6.0` | 1st Feb 2024 | `3.9-3.12` | `3.0` only | `3.0` only |
@@ -163,8 +163,8 @@ experimental.
163163
CHANGELOG
164164
=========
165165

166-
Next release (0.9.0)...
167-
-----------------------
166+
0.9.0
167+
-----
168168

169169
Contributors (0.9.0):
170170

doc/source/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ Compatible versions:
8585
- FLINT
8686
- Cython
8787
* - 0.9.0
88-
- Not yet
88+
- 3rd Jul 2026
8989
- 3.10-3.14
9090
- 3.0-3.6
91-
- 3.1-3.2?
91+
- 3.1-3.2
9292
* - 0.8.0
9393
- 29th Aug 2025
9494
- 3.11-3.14

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
# built documents.
5353
#
5454
# The short X.Y version.
55-
version = '0.8.0'
55+
version = '0.9.0'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.8.0'
57+
release = '0.9.0'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "python-flint"
33
description = "Bindings for FLINT"
4-
version = "0.8.0"
4+
version = "0.9.0"
55

66
# This needs to be in sync with README, and CI config.
77
requires-python = ">= 3.10"

src/flint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
Ordering,
4949
)
5050

51-
__version__ = "0.8.0"
51+
__version__ = "0.9.0"
5252

5353

5454
__all__ = [

src/flint/test/test_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
def test_pyflint():
4848

49-
assert flint.__version__ == "0.8.0"
49+
assert flint.__version__ == "0.9.0"
5050

5151
ctx = flint.ctx
5252
assert str(ctx) == repr(ctx) == _default_ctx_string

0 commit comments

Comments
 (0)