diff --git a/HISTORY.rst b/HISTORY.rst index 0e2f945f..002c39a1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,13 @@ History ------- +v0.27.0 (2026-01-30) +.................... + +* Fix wrong reference in ``Retry`` docstring by @PassionateBytes in #507 +* Fix retry_on_error type annotation by @armicron in #446 +* Add support for Python 3.13, remove advertised support for Python 3.8 by @Viicos in #514 + v0.26.3 (2025-01-06) .................... diff --git a/arq/version.py b/arq/version.py index 31ed92e3..144eec71 100644 --- a/arq/version.py +++ b/arq/version.py @@ -1,2 +1,2 @@ # Version here is used for the package version via the `[tool.hatch.version]` section of `pyproject.toml`. -VERSION = '0.26.3' +VERSION = '0.27.0'