Skip to content

Commit 47cf06f

Browse files
authoredMar 16, 2025
Release v1.0.3 (#5)
1 parent d661766 commit 47cf06f

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@
1313
- Add docstrings to handlers
1414
- Improve Makefile
1515
- Improve README
16+
17+
## [1.0.3] - 2025-mm-dd
18+
19+
- Update README
20+
- Improve tests
21+
- Fix DRF API settings initialization

‎drf_simple_api_errors/__init__.py

+1-1
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.2"
4+
__version__ = "1.0.3"

‎drf_simple_api_errors/settings.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
}
1111

1212
# List of settings that may be in string import notation
13-
IMPORT_STRINGS = ("EXTRA_HANDLERS", "CAMELIZE")
13+
# e.g. when defined in settings.py as "app.module.class_name"
14+
IMPORT_STRINGS = []
1415

1516
api_settings = APISettings(USER_SETTINGS, DEFAULTS, IMPORT_STRINGS)

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "drf-simple-api-errors"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "A library for Django Rest Framework returning consistent and easy-to-parse API error messages."
55
authors = ["Gian <30044863+gripep@users.noreply.github.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)