Skip to content
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand All @@ -163,8 +163,8 @@ experimental.
CHANGELOG
=========

Next release (0.9.0)...
-----------------------
0.9.0
-----

Contributors (0.9.0):

Expand Down
4 changes: 2 additions & 2 deletions doc/source/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/flint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
Ordering,
)

__version__ = "0.8.0"
__version__ = "0.9.0"


__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion src/flint/test/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading