Skip to content

Commit b2b04ae

Browse files
committed
Release 3.25
Refs #343, #408
1 parent d25cdd3 commit b2b04ae

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

docs/changelog.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Changelog
33
===========
44

5+
.. _v3_25:
6+
7+
3.25 (2022-03-01)
8+
-----------------
9+
10+
- 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`)
11+
- New :ref:`db.sqlite_version <python_api_sqlite_version>` property, returning a tuple of integers representing the version of SQLite, for example ``(3, 38, 0)``.
12+
- Fixed a bug where :ref:`register_function(deterministic=True) <python_api_register_function>` caused errors on versions of SQLite prior to 3.8.3. (:issue:`408`)
13+
- New documented :ref:`hash_record(record, keys=...) <reference_utils_hash_record>` function.
14+
515
.. _v3_24:
616

717
3.24 (2022-02-15)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import io
33
import os
44

5-
VERSION = "3.24"
5+
VERSION = "3.25"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)