From 753ddc902881b8d5347675c8544f5e10c977fbda Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 7 Oct 2024 10:33:20 -0700 Subject: [PATCH] Release 0.65 Refs #2434 --- datasette/version.py | 2 +- docs/changelog.rst | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/datasette/version.py b/datasette/version.py index 235781e46a..5f46dc8e16 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version__ = "0.64.8" +__version__ = "0.65" __version_info__ = tuple(__version__.split(".")) diff --git a/docs/changelog.rst b/docs/changelog.rst index d3772e73f3..435e3fab6e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,9 +4,17 @@ Changelog ========= +.. _v0_65: + +0.65 (2024-10-07) +----------------- + +- Upgrade for compatibility with Python 3.13 (by vendoring Pint dependency). (:issue:`2434`) +- Dropped support for Python 3.8. + .. _v0_64_8: -0.64.8 (2023-06-21) +0.64.8 (2024-06-21) ------------------- - Security improvement: 404 pages used to reflect content from the URL path, which could be used to display misleading information to Datasette users. 404 errors no longer display additional information from the URL. (:issue:`2359`) @@ -14,7 +22,7 @@ Changelog .. _v0_64_7: -0.64.7 (2023-06-12) +0.64.7 (2024-06-12) ------------------- - Fixed a bug where canned queries with named parameters threw an error when run against SQLite 3.46.0. (:issue:`2353`)