Release 3.37

Refs #618, #619, #620, #621, #630, #632
This commit is contained in:
Simon Willison 2024-07-18 11:43:07 -07:00
commit 8b004b2406
2 changed files with 10 additions and 1 deletions

View file

@ -4,6 +4,15 @@
Changelog
===========
.. _v3_37:
3.37 (2024-07-18)
-----------------
- The ``create-table`` and ``insert-files`` commands all now accept multiple ``--pk`` options for compound primary keys. (:issue:`620`)
- Now tested against Python 3.13 pre-release. (`#619 <https://github.com/simonw/sqlite-utils/pull/619>`__)
- Fixed a crash that can occur in environments with a broken ``numpy`` installation, producing a ``module 'numpy' has no attribute 'int8'``. (:issue:`632`)
.. _v3_36:
3.36 (2023-12-07)

View file

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