Release 2.16

Refs #134, #135
This commit is contained in:
Simon Willison 2020-08-21 14:02:29 -07:00
commit ea87c2b943
2 changed files with 9 additions and 1 deletions

View file

@ -2,6 +2,14 @@
Changelog Changelog
=========== ===========
.. _v2_16:
2.16 (2020-08-21)
-----------------
- ``--load-extension`` option for ``sqlite-utils query`` for loading SQLite extensions. (`#134 <https://github.com/simonw/sqlite-utils/issues/134>`__)
- New ``sqlite_utils.utils.find_spatialite()`` function for finding SpatiaLite in common locations. (`#135 <https://github.com/simonw/sqlite-utils/issues/135>`__)
.. _v2_15_1: .. _v2_15_1:
2.15.1 (2020-08-12) 2.15.1 (2020-08-12)

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import io import io
import os import os
VERSION = "2.15.1" VERSION = "2.16"
def get_long_description(): def get_long_description():