Skip to content

Commit 823d66b

Browse files
Bump version: 1.3.0.b0 -> 1.3.0
1 parent c182ead commit 823d66b

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.0.b0
2+
current_version = 1.3.0
33
commit = False
44
tag = False
55

CHANGELOG.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
### Fixed
11-
12-
- Explicitly use `utf-8` encoding in `setup.py`, which could previously lead to issues when installing on certain systems.
13-
14-
## [v1.3.0.b0] - 2019-06-23
10+
## [v1.3.0] - 2019-06-28
1511

1612
**NOTE**: this release contains migrations. In your Django project, run them using:
1713

@@ -38,6 +34,7 @@ Improved customization via base classes:
3834

3935
- The `id` field of `APIKey` is now non-`editable`.
4036
- `APIKeyModelAdmin` does not define `fieldsets` anymore. This allows subclasses to benefit from Django's automatic fieldsets.
37+
- Explicitly use `utf-8` encoding in `setup.py`, which could previously lead to issues when installing on certain systems.
4138

4239
## [v1.2.1] - 2019-06-03
4340

@@ -146,8 +143,8 @@ Released: 2018-11-17
146143
- Generate, view and revoke API keys from the Django admin.
147144
- 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.
148145

149-
[unreleased]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.1...HEAD
150-
[v1.3.0.b0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.1...v1.3.0.b0
146+
[unreleased]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.3.0...HEAD
147+
[v1.3.0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.1...v1.3.0
151148
[v1.2.1]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.0...v1.2.1
152149
[1.2.0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.1.0...v1.2.0
153150
[1.1.0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.0.0...v1.1.0

rest_framework_api_key/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.3.0.b0"
1+
__version__ = "1.3.0"
22
default_app_config = "rest_framework_api_key.apps.RestFrameworkApiKeyConfig"

0 commit comments

Comments
 (0)