diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index f809884..700281e 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -73,7 +73,7 @@ jobs: uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} - args: --release --strip --out dist --interpreter '3.9 3.10 3.11 3.12' + args: --release --strip --out dist --interpreter '3.9 3.10 3.11 3.12 3.13' manylinux: ${{ matrix.manylinux || 'auto' }} sccache: 'true' rust-toolchain: "1.79" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index eaf3900..a6fb596 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ 🚀 Changelog ============ +0.6.7 (2024-08-02) +------------------ + +- Add Python 3.13 binary wheels, now that its ABI is stable + 0.6.6 (2024-07-27) ------------------ diff --git a/pyproject.toml b/pyproject.toml index 3fd62b2..c060aa8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ authors = [ {name = "Arie Bovenberg", email = "a.c.bovenberg@gmail.com"}, ] readme = "README.md" -version = "0.6.6" +version = "0.6.7rc0" description = "Modern datetime library for Python, written in Rust" requires-python = ">=3.9" classifiers = [ diff --git a/pysrc/whenever/_pywhenever.py b/pysrc/whenever/_pywhenever.py index a61578a..63e7cd9 100644 --- a/pysrc/whenever/_pywhenever.py +++ b/pysrc/whenever/_pywhenever.py @@ -32,7 +32,7 @@ # - It saves some overhead from __future__ import annotations -__version__ = "0.6.6" +__version__ = "0.6.7rc0" import enum import re