Skip to content

Commit

Permalink
Release 3.36
Browse files Browse the repository at this point in the history
Refs #344, #604, #606
  • Loading branch information
simonw committed Dec 8, 2023
1 parent f29189a commit 885a0b3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions docs/changelog.rst
Expand Up @@ -4,6 +4,17 @@
Changelog
===========

.. _v3_36:

3.36 (2023-12-07)
-----------------

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

.. _v3_35_2:

3.35.2 (2023-11-03)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@
import io
import os

VERSION = "3.35.2"
VERSION = "3.36"


def get_long_description():
Expand Down

0 comments on commit 885a0b3

Please sign in to comment.