Skip to content

Commit f111812

Browse files
authored
1.6.1 release (#1053)
* Fix wrong level of subheading. * Move post-1.6.0 updates to 1.6.1. No backwards time travel! * Release 1.6.1 * Fix missing _ for href.
1 parent 6017f07 commit f111812

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

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

1717
## [Unreleased]
1818

19+
## [1.6.1] 2021-12-23
20+
21+
### Changed
22+
* Note: Only Django 4.0.1+ is supported due to a regression in Django 4.0.0. [Explanation](https://github.com/jazzband/django-oauth-toolkit/pull/1046#issuecomment-998015272)
23+
24+
### Fixed
25+
* Miscellaneous 1.6.0 packaging issues.
26+
1927
## [1.6.0] 2021-12-19
2028
### Added
2129
* #949 Provide django.contrib.auth.authenticate() with a `request` for compatibiity with more backends (like django-axes).
2230
* #968, #1039 Add support for Django 3.2 and 4.0.
23-
* Note: Only Django 4.0.1+ is supported due to a regression in Django 4.0.0. [Explanation](https://github.com/jazzband/django-oauth-toolkit/pull/1046#issuecomment-998015272)
2431
* #953 Allow loopback redirect URIs using random ports as described in [RFC8252 section 7.3](https://datatracker.ietf.org/doc/html/rfc8252#section-7.3).
2532
* #972 Add Farsi/fa language support.
2633
* #978 OIDC: Add support for [rotating multiple RSA private keys](https://django-oauth-toolkit.readthedocs.io/en/latest/oidc.html#rotating-the-rsa-private-key).
@@ -33,7 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3340
* #991 Update documentation of [REFRESH_TOKEN_EXPIRE_SECONDS](https://django-oauth-toolkit.readthedocs.io/en/latest/settings.html#refresh-token-expire-seconds) to indicate it may be `int` or `datetime.timedelta`.
3441
* #977 Update [Tutorial](https://django-oauth-toolkit.readthedocs.io/en/stable/tutorial/tutorial_01.html#) to show required `include`.
3542

36-
## Removed
43+
### Removed
3744
* #968 Remove support for Django 3.0 & 3.1 and Python 3.6
3845
* #1035 Removes default_app_config for Django Deprecation Warning
3946
* #1023 six should be dropped

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ capabilities to your Django projects. Django OAuth Toolkit makes extensive use o
3737

3838
Note: If you have issues installing Django 4.0.0, it is because we only support
3939
Django 4.0.1+ due to a regression in Django 4.0.0. Besides 4.0.0, Django 2.2+ is supported.
40-
`Explanation <https://github.com/jazzband/django-oauth-toolkit/pull/1046#issuecomment-998015272>`.
40+
`Explanation <https://github.com/jazzband/django-oauth-toolkit/pull/1046#issuecomment-998015272>`_.
4141

4242
Contributing
4343
------------

oauth2_provider/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import django
22

33

4-
__version__ = "1.6.0"
4+
__version__ = "1.6.1"
55

66
if django.VERSION < (3, 2):
77
default_app_config = "oauth2_provider.apps.DOTConfig"

0 commit comments

Comments
 (0)