From 3936512edd34854f3290ffbac55d6ee0c673a36d Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 10 May 2020 18:54:56 -0700 Subject: [PATCH] Release 2.9 --- docs/changelog.rst | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 02e4014dc..d84e536b1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ Changelog =========== +.. _v2_9: + +2.9 (2020-05-10) +---------------- + +- New ``sqlite-utils drop-table`` command, see :ref:`cli_drop_table`. (`#111 `__) +- New ``sqlite-utils drop-view`` command, see :ref:`cli_drop_view`. +- Python ``decimal.Decimal`` objects are now stored as ``FLOAT``. (`#110 `__) + .. _v2_8: 2.8 (2020-05-03) diff --git a/setup.py b/setup.py index 88e385b02..e619aa7f3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import io import os -VERSION = "2.8" +VERSION = "2.9" def get_long_description():