From baafcec4a5e653d0c242f79fa5437591604d5292 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 11 Jun 2021 19:05:12 -0700 Subject: [PATCH] Release 3.9 Refs #268 --- docs/changelog.rst | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index f1d2261..c52449c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,14 @@ Changelog =========== +.. _v3_9: + +3.9 (2021-06-11) +---------------- + +- New ``sqlite-utils schema`` command showing the full SQL schema for a database, see :ref:`Showing the schema (CLI)`. (`#268 `__) +- ``db.schema`` introspection property exposing the same feature to the Python library, see :ref:`Showing the schema (Python library) `. + .. _v3_8: 3.8 (2021-06-02) diff --git a/setup.py b/setup.py index 194baba..fd2e98a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "3.8" +VERSION = "3.9" def get_long_description():