diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 564e818..a276500 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,14 @@ Change Log ========== +Version 0.6.1 +------------- + +Released 2023/5/3 + +* Revised the code for the upcoming Werkzeug 2.4. + + Version 0.6.0 ------------- diff --git a/src/flask_digest_auth/__init__.py b/src/flask_digest_auth/__init__.py index 3f3d8ec..6680348 100644 --- a/src/flask_digest_auth/__init__.py +++ b/src/flask_digest_auth/__init__.py @@ -22,5 +22,5 @@ from flask_digest_auth.algo import make_password_hash, calc_response from flask_digest_auth.auth import DigestAuth from flask_digest_auth.test import Client -VERSION: str = "0.6.0" +VERSION: str = "0.6.1" """The package version."""