diff --git a/datasette/version.py b/datasette/version.py index b2cd10bf..38a52c01 100644 --- a/datasette/version.py +++ b/datasette/version.py @@ -1,2 +1,2 @@ -__version__ = "1.0a12" +__version__ = "1.0a13" __version_info__ = tuple(__version__.split(".")) diff --git a/docs/changelog.rst b/docs/changelog.rst index 240df141..1d31e9e6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,21 @@ Changelog ========= +.. _v1_0_a13: + +1.0a13 (2024-03-12) +------------------- + +Each of the key concepts in Datasette now has an :ref:`actions menu `, which plugins can use to add additional functionality targeting that entity. + +- Plugin hook: :ref:`view_actions() ` for actions that can be applied to a SQL view. (:issue:`2297`) +- Plugin hook: :ref:`homepage_actions() ` for actions that apply to the instance homepage. (:issue:`2298`) +- Plugin hook: :ref:`row_actions() ` for actions that apply to the row page. (:issue:`2299`) +- :ref:`Plugin hooks ` documentation page is now organized with additional headings. (:issue:`2300`) +- Improved the display of action buttons on pages that also display metadata. (:issue:`2286`) +- The header and footer of the page now uses a subtle gradient effect, and options in the navigation menu are better visually defined. (:issue:`2302`) +- Table names that start with an underscore now default to hidden. (:issue:`2104`) + .. _v1_0_a12: 1.0a12 (2024-02-29)