mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-08-04 08:24:20 +02:00
parent
f29189a3dd
commit
885a0b321d
2 changed files with 12 additions and 1 deletions
|
|
@ -4,6 +4,17 @@
|
||||||
Changelog
|
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:
|
.. _v3_35_2:
|
||||||
|
|
||||||
3.35.2 (2023-11-03)
|
3.35.2 (2023-11-03)
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
||||||
import io
|
import io
|
||||||
import os
|
import os
|
||||||
|
|
||||||
VERSION = "3.35.2"
|
VERSION = "3.36"
|
||||||
|
|
||||||
|
|
||||||
def get_long_description():
|
def get_long_description():
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue