Skip to content

Commit

Permalink
Bump version: 1.4.0 → 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
florimondmanca committed Aug 24, 2019
1 parent 3be6c21 commit 8c8d5d0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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]

5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)).
Expand Down Expand Up @@ -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
Expand Down
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 = "djangorestframework-api-key"
version = "1.4.0"
version = "1.4.1"
description = "API key permissions for the Django REST Framework"
authors = [
"florimondmanca <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion rest_framework_api_key/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.4.0"
__version__ = "1.4.1"
default_app_config = "rest_framework_api_key.apps.RestFrameworkApiKeyConfig"

0 comments on commit 8c8d5d0

Please sign in to comment.