Skip to content

Commit 9017f9a

Browse files
committed
bump version to 1.5.0
1 parent a1b6b50 commit 9017f9a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Django Field Audit change log
22

3+
## v1.5.0 - 2025-11-13
4+
- Add support for disabling auditing using the `FIELD_AUDIT_ENABLED` and the `disable_audit` and `enable_audit` context managers.
5+
36
## v1.4.0 - 2025-07-29
47
- Extract audit logic to the `AuditService` class and allow overriding the class (using the `FIELD_AUDIT_SERVICE_CLASS` setting) to provide custom logic.
58
- Update project to use `uv` for dependency management and `ruff` for linting.

field_audit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .field_audit import audit_fields, disable_audit, enable_audit # noqa: F401
22
from .services import AuditService, get_audit_service # noqa: F401
33

4-
__version__ = "1.4.0"
4+
__version__ = "1.5.0"

0 commit comments

Comments
 (0)