From 753fa3b3168878c497777488481a88c9efa637a2 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 23 Jun 2026 14:30:08 -0700 Subject: [PATCH] Release 1.0a35 Refs #1477, #1510, #1975, #2002, #2127, #2787, #2788, #2794, #2796, #2798, #2803 --- datasette/version.py | 2 +- docs/changelog.rst | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/datasette/version.py b/datasette/version.py index 12fa170e..49d270e4 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version__ = "1.0a34" +__version__ = "1.0a35" __version_info__ = tuple(__version__.split(".")) diff --git a/docs/changelog.rst b/docs/changelog.rst index df526c32..0ed231fd 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,10 +4,10 @@ Changelog ========= -.. _unreleased: +.. _v1_0_a35: -Unreleased ----------- +1.0a35 (2026-06-23) +------------------- - New "Create table" interface in the database actions menu, backed by the ``//-/create`` :ref:`JSON API `. It can define columns, primary keys, custom column types, ``NOT NULL`` constraints, literal defaults, expression defaults and single-column foreign keys. (:issue:`2787`) - New "Alter table" table action and ``///-/alter`` :ref:`JSON API ` for changing existing tables: add, rename, reorder and drop columns; change column types, defaults, ``NOT NULL`` constraints, primary keys and foreign keys; and rename the table. The alter table dialog also includes a "Drop table" button. (:issue:`2788`)