From 8b004b24060be673ddc25d759895d65a47c10b02 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 18 Jul 2024 11:43:07 -0700 Subject: [PATCH] Release 3.37 Refs #618, #619, #620, #621, #630, #632 --- docs/changelog.rst | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 0f17cb79..fab835ad 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 `__) +- 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) diff --git a/setup.py b/setup.py index 06706994..7a96ca7e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import io import os -VERSION = "3.36" +VERSION = "3.37" def get_long_description():