From 2e064641acafcc82f09f148f4e2e2056f0ac85fe Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 11 Jan 2023 10:21:37 -0800 Subject: [PATCH] Release 0.64.1 Refs #1985, #1987 --- datasette/version.py | 2 +- docs/changelog.rst | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/datasette/version.py b/datasette/version.py index eedecc61..05f25dd6 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version__ = "0.64" +__version__ = "0.64.1" __version_info__ = tuple(__version__.split(".")) diff --git a/docs/changelog.rst b/docs/changelog.rst index 39324989..5f69a3fd 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,14 @@ Changelog ========= +.. _v0_64_1: + +0.64.1 (2023-01-11) +------------------- + +- Documentation now links to a current source of information for installing Python 3. (:issue:`1987`) +- Incorrectly calling the Datasette constructor using ``Datasette("path/to/data.db")`` instead of ``Datasette(["path/to/data.db"])`` now returns a useful error message. (:issue:`1985`) + .. _v0_64: 0.64 (2023-01-09)