diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c3d2a2..c32c3a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/drf_simple_api_errors/__init__.py b/drf_simple_api_errors/__init__.py index f35be7b..060532a 100644 --- a/drf_simple_api_errors/__init__.py +++ b/drf_simple_api_errors/__init__.py @@ -1,4 +1,4 @@ from .exception_handler import exception_handler __all__ = ("exception_handler",) -__version__ = "1.0.1" +__version__ = "1.0.2" diff --git a/pyproject.toml b/pyproject.toml index df76c2d..f56632b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"