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():