From 1660911afb25a0ab40a745960d950740900fbcfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 8 Oct 2023 22:20:16 +0800 Subject: [PATCH] Advanced to version 0.7.0. --- docs/source/changelog.rst | 11 +++++++++++ src/flask_digest_auth/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 9e0647b..abdbb02 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,17 @@ Change Log ========== +Version 0.7.0 +------------- + +Released 2023/10/8 + +* Removed the test client. You should use httpx instead of Flask-Testing + when writing automatic tests. Flask-Testing is not maintained for more + than 3 years, and is not compatible with Flask 3 now. +* Revised to skip the tests when Flask-Login is not compatible with Werkzeug. + + Version 0.6.2 ------------- diff --git a/src/flask_digest_auth/__init__.py b/src/flask_digest_auth/__init__.py index feca91e..9752e2b 100644 --- a/src/flask_digest_auth/__init__.py +++ b/src/flask_digest_auth/__init__.py @@ -21,5 +21,5 @@ from flask_digest_auth.algo import make_password_hash, calc_response from flask_digest_auth.auth import DigestAuth -VERSION: str = "0.6.2" +VERSION: str = "0.7.0" """The package version."""