Skip to content

Commit 885a0b3

Browse files
committed
Release 3.36
Refs #344, #604, #606
1 parent f29189a commit 885a0b3

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

docs/changelog.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@
44
Changelog
55
===========
66

7+
.. _v3_36:
8+
9+
3.36 (2023-12-07)
10+
-----------------
11+
12+
- Support for creating tables in `SQLite STRICT mode <https://www.sqlite.org/stricttables.html>`__. Thanks, `Taj Khattra <https://github.com/tkhattra>`__. (:issue:`344`)
13+
- CLI commands ``create-table``, ``insert`` and ``upsert`` all now accept a ``--strict`` option.
14+
- Python methods that can create a table - ``table.create()`` and ``insert/upsert/insert_all/upsert_all`` all now accept an optional ``strict=True`` parameter.
15+
- The ``transform`` command and ``table.transform()`` method preserve strict mode when transforming a table.
16+
- The ``sqlite-utils create-table`` command now accepts ``str``, ``int`` and ``bytes`` as aliases for ``text``, ``integer`` and ``blob`` respectively. (:issue:`606`)
17+
718
.. _v3_35_2:
819

920
3.35.2 (2023-11-03)

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 = "3.35.2"
5+
VERSION = "3.36"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)