Skip to content

Commit 9b35f4d

Browse files
committed
Release v2.0.0
1 parent f8345bf commit 9b35f4d

File tree

5 files changed

+71
-72
lines changed

5 files changed

+71
-72
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,41 @@
22

33
## [1.0.0] - 2024-04-26
44

5+
Changes:
6+
57
- First release on PyPI
68

79
## [1.0.1] - 2024-04-30
810

11+
Changes:
12+
913
- Upgrade dependencies
1014

1115
## [1.0.2] - 2024-09-08
1216

17+
Changes:
18+
1319
- Add docstrings to handlers
1420
- Improve Makefile
1521
- Improve README
1622

1723
## [1.0.3] - 2025-03-16
1824

25+
Changes:
26+
1927
- Update README
2028
- Improve tests
2129
- Fix DRF API settings initialization
30+
31+
## [2.0.0] - 2025-07-11
32+
33+
Breaking changes:
34+
35+
- The API error response now always includes the keys: `title`, `detail`, and `invalid_param`. The `title` key is always populated, while `detail` and `invalid_param` may be `null` depending on the error source.
36+
- Drop support for python 3.8
37+
38+
Changes:
39+
40+
- Improve code modularity and readability
41+
- Update Makefile
42+
- Update README

drf_simple_api_errors/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .exception_handler import exception_handler
22

33
__all__ = ("exception_handler",)
4-
__version__ = "1.0.3"
4+
__version__ = "2.0.0"

0 commit comments

Comments
 (0)