Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,9 @@
- Add docstrings to handlers
- Improve Makefile
- Improve README

## [1.0.3] - 2025-mm-dd

- Update README
- Improve tests
- Fix DRF API settings initialization
2 changes: 1 addition & 1 deletion drf_simple_api_errors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .exception_handler import exception_handler

__all__ = ("exception_handler",)
__version__ = "1.0.2"
__version__ = "1.0.3"
3 changes: 2 additions & 1 deletion drf_simple_api_errors/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
}

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

api_settings = APISettings(USER_SETTINGS, DEFAULTS, IMPORT_STRINGS)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "drf-simple-api-errors"
version = "1.0.2"
version = "1.0.3"
description = "A library for Django Rest Framework returning consistent and easy-to-parse API error messages."
authors = ["Gian <[email protected]>"]
license = "MIT"
Expand Down