From 1d9f2a23daef226a211c1326a051a37925a6ac7f Mon Sep 17 00:00:00 2001 From: Dan Watson Date: Sun, 17 Mar 2024 08:40:30 -0400 Subject: [PATCH] Bump version --- CHANGELOG.md | 5 +++++ history/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e76b4b..d554643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 3.4.5 + +* Properly specify database alias for Django queries in the history backends + + ## 3.4.4 * `CASCADE` when dropping the `history_record` function. diff --git a/history/__init__.py b/history/__init__.py index 37effc2..6a265ba 100644 --- a/history/__init__.py +++ b/history/__init__.py @@ -5,7 +5,7 @@ from .backends import get_backend, session # noqa from .utils import get_history_model # noqa -__version__ = "3.4.4" +__version__ = "3.4.5" __version_info__ = tuple( int(num) if num.isdigit() else num for num in re.findall(r"([a-z\d]+)", __version__, re.I)