diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fc228db..ee9d36d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,9 @@ [bumpversion] -current_version = 1.4.0 +current_version = 1.4.1 commit = False tag = False [bumpversion:file:rest_framework_api_key/__init__.py] + [bumpversion:file:pyproject.toml] + diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dcb56e..daec78c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v1.4.1] - 2019-08-24 + ### Added - Now ships with type annotations ([PEP 561](https://www.python.org/dev/peps/pep-0561/)). @@ -155,7 +157,8 @@ Released: 2018-11-17 - Generate, view and revoke API keys from the Django admin. - Authenticate requests using the `Api-Token` and `Api-Secret-Key` headers. Customizable via the `DRF_API_KEY_TOKEN_HEADER` and `DRF_API_KEY_SECRET_KEY_HEADER` settings. -[unreleased]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.4.0...HEAD +[unreleased]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.4.1...HEAD +[v1.4.1]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.4.0...v1.4.1 [v1.4.0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.3.0...v1.4.0 [v1.3.0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.1...v1.3.0 [v1.2.1]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.0...v1.2.1 diff --git a/pyproject.toml b/pyproject.toml index da207d2..bbe460c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "djangorestframework-api-key" -version = "1.4.0" +version = "1.4.1" description = "API key permissions for the Django REST Framework" authors = [ "florimondmanca " diff --git a/rest_framework_api_key/__init__.py b/rest_framework_api_key/__init__.py index 4fb030b..677bbd8 100644 --- a/rest_framework_api_key/__init__.py +++ b/rest_framework_api_key/__init__.py @@ -1,2 +1,2 @@ -__version__ = "1.4.0" +__version__ = "1.4.1" default_app_config = "rest_framework_api_key.apps.RestFrameworkApiKeyConfig"