Skip to content

Release v1.0.3 #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 16, 2025
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 <30044863+gripep@users.noreply.github.com>"]
license = "MIT"
Expand Down