From fb1236673e239b1ad31e3e86fb1cbddff80dbfd8 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 09:07:42 +0800 Subject: [PATCH] Advanced to version 1.5.6. --- docs/source/changelog.rst | 11 +++++++++++ src/accounting/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 4e73104..db7c3e1 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,17 @@ Change Log ========== +Version 1.5.6 +------------- + +Released 2023/5/23 + +Bug fixes. + +* Fixed the return URI of the creation forms to decode the next URI. +* Fixed the unmatched offset list to use the encoded next URI. + + Version 1.5.5 ------------- diff --git a/src/accounting/__init__.py b/src/accounting/__init__.py index a2f89ca..7a389c9 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.5" +VERSION: str = "1.5.6" """The package version.""" db: SQLAlchemy = SQLAlchemy() """The database instance."""