Skip to content

Commit 87cd6a0

Browse files
Bump version: 1.4.0 → 1.4.1
1 parent 439dbe2 commit 87cd6a0

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.bumpversion.cfg

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[bumpversion]
2-
current_version = 1.4.0
2+
current_version = 1.4.1
33
commit = False
44
tag = False
55

66
[bumpversion:file:rest_framework_api_key/__init__.py]
7+
78
[bumpversion:file:pyproject.toml]
9+

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v1.4.1] - 2019-08-24
11+
1012
### Added
1113

1214
- Now ships with type annotations ([PEP 561](https://www.python.org/dev/peps/pep-0561/)).
@@ -155,7 +157,8 @@ Released: 2018-11-17
155157
- Generate, view and revoke API keys from the Django admin.
156158
- 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.
157159

158-
[unreleased]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.4.0...HEAD
160+
[unreleased]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.4.1...HEAD
161+
[v1.4.1]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.4.0...v1.4.1
159162
[v1.4.0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.3.0...v1.4.0
160163
[v1.3.0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.1...v1.3.0
161164
[v1.2.1]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.0...v1.2.1

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "djangorestframework-api-key"
3-
version = "1.4.0"
3+
version = "1.4.1"
44
description = "API key permissions for the Django REST Framework"
55
authors = [
66
"florimondmanca <florimond.manca@gmail.com>"

rest_framework_api_key/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.4.0"
1+
__version__ = "1.4.1"
22
default_app_config = "rest_framework_api_key.apps.RestFrameworkApiKeyConfig"

0 commit comments

Comments
 (0)