From 546558074f7f59c87e1863757a935a2580a0dc5e Mon Sep 17 00:00:00 2001 From: Giovanni Cimolin Date: Mon, 30 Sep 2024 23:16:09 +0200 Subject: [PATCH] chore: Update changelogs and release --- .python-version | 1 + CHANGELOG.md | 3 +++ setup.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .python-version diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..bfa2d96 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +django-rest-knox diff --git a/CHANGELOG.md b/CHANGELOG.md index 16f9d29..ea3c7c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 5.0.2 +- Implement AUTO_REFRESH_MAX_TTL to limit total token lifetime when AUTO_REFRESH = True + ## 5.0.1 - Fix migration: retrieve `TOKEN_MODEL` from `knox_settings` instead of Django settings. diff --git a/setup.py b/setup.py index c568f86..bf7ada6 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='5.0.1', + version='5.0.2', description='Authentication for django rest framework', long_description=long_description, long_description_content_type='text/markdown',