Skip to content

Commit 9b7be79

Browse files
committed
Release 1.7 - with lookup table support
1 parent 941d281 commit 9b7be79

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

docs/changelog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
Changelog
33
===========
44

5+
.. _v1_7:
6+
7+
1.7 (2019-07-24)
8+
----------------
9+
10+
Support for lookup tables.
11+
12+
- New ``table.lookup({...})`` utility method for building and querying lookup tables - see :ref:`python_api_lookup_tables` (`#44 <https://github.com/simonw/sqlite-utils/issues/44>`__)
13+
- New ``extracts=`` table configuration option, see :ref:`python_api_extracts` (`#46 <https://github.com/simonw/sqlite-utils/issues/46>`__)
14+
- Use `pysqlite3 <https://github.com/coleifer/pysqlite3>`__ if it is available, otherwise use ``sqlite3`` from the standard library
15+
- Table options can now be passed to the new ``db.table(name, **options)`` factory function in addition to being passed to ``insert_all(records, **options)`` and friends - see :ref:`python_api_table_configuration`
16+
- In-memory databases can now be created using ``db = Database(memory=True)``
17+
518
.. _v1_6:
619

720
1.6 (2019-07-18)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import io
33
import os
44

5-
VERSION = "1.6"
5+
VERSION = "1.7"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)