From 2969e83afed0b84ee26e964a905d1b044953bf88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 30 Apr 2023 06:39:53 +0800 Subject: [PATCH] Advanced to version 1.5.2. --- docs/source/changelog.rst | 8 ++++++++ src/accounting/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index f1f24c0..19f2bbd 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,14 @@ Change Log ========== +Version 1.5.2 +------------- + +Released 2023/4/30 + +* Fixed the error of the net balance in the unmatched offset list. + + Version 1.5.1 ------------- diff --git a/src/accounting/__init__.py b/src/accounting/__init__.py index 937df31..451992e 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.1" +VERSION: str = "1.5.2" """The package version.""" db: SQLAlchemy = SQLAlchemy() """The database instance."""