Skip to content

Commit ef8d3ac

Browse files
Bump version: 1.2.1 -> 1.3.0.b0
1 parent 8ca6410 commit ef8d3ac

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
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.2.1
2+
current_version = 1.3.0.b0
33
commit = False
44
tag = False
55

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v1.3.0.b0] - 2019-06-23
11+
12+
**NOTE**: this release contains migrations. In your Django project, run them using:
13+
14+
```python
15+
python manage.py migrate rest_framework_api_key
16+
```
17+
1018
### Added
1119

1220
Improved customization via base classes:
@@ -135,6 +143,7 @@ Released: 2018-11-17
135143
- 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.
136144

137145
[unreleased]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.1...HEAD
146+
[v1.3.0.b0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.1...v1.3.0.b0
138147
[v1.2.1]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.2.0...v1.2.1
139148
[1.2.0]: https://github.com/florimondmanca/djangorestframework-api-key/compare/v1.1.0...v1.2.0
140149
[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.2.1"
1+
__version__ = "1.3.0.b0"
22
default_app_config = "rest_framework_api_key.apps.RestFrameworkApiKeyConfig"

0 commit comments

Comments
 (0)