Skip to content

Release v1.0.2 #4

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 1 commit into from
Sep 8, 2024
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 @@ -7,3 +7,9 @@
## [1.0.1] - 2024-04-30

- Upgrade dependencies

## [1.0.2] - 2024-09-08

- Add docstrings to handlers
- Improve Makefile
- Improve README
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.1"
__version__ = "1.0.2"
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.1"
version = "1.0.2"
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
Loading