From 352867797d0e95a74e6c8e23ac2731e616fbea7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Tue, 23 May 2023 08:44:08 +0800 Subject: [PATCH] Advanced to version 1.5.5. --- docs/source/changelog.rst | 13 +++++++++++++ src/accounting/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index a323353..4e73104 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,19 @@ Change Log ========== +Version 1.5.5 +------------- + +Released 2023/5/23 + +Security fixes. + +* Revised the next URI utilities to encode and decode the next URI + preventing tampering with the next URI. +* Added the integrity value of the CDN stylesheet links. +* Various fixes. + + Version 1.5.4 ------------- diff --git a/src/accounting/__init__.py b/src/accounting/__init__.py index 6d23c19..a2f89ca 100644 --- a/src/accounting/__init__.py +++ b/src/accounting/__init__.py @@ -24,7 +24,7 @@ from flask_sqlalchemy import SQLAlchemy from accounting.utils.user import UserUtilityInterface -VERSION: str = "1.5.4" +VERSION: str = "1.5.5" """The package version.""" db: SQLAlchemy = SQLAlchemy() """The database instance."""