diff --git a/docs/changelog.rst b/docs/changelog.rst index a2a024b..5d2667e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,16 @@ Changelog =========== +.. _v3_25: + +3.25 (2022-03-01) +----------------- + +- New ``hash_id_columns=`` parameter for creating a primary key that's a hash of the content of specific columns - see :ref:`python_api_hash` for details. (:issue:`343`) +- New :ref:`db.sqlite_version ` property, returning a tuple of integers representing the version of SQLite, for example ``(3, 38, 0)``. +- Fixed a bug where :ref:`register_function(deterministic=True) ` caused errors on versions of SQLite prior to 3.8.3. (:issue:`408`) +- New documented :ref:`hash_record(record, keys=...) ` function. + .. _v3_24: 3.24 (2022-02-15) diff --git a/setup.py b/setup.py index 9db7db1..62f8f2a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "3.24" +VERSION = "3.25" def get_long_description():