From 79eb0771293121e2d82f6c292cd8efdb1cad67f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Tue, 28 Nov 2023 08:07:20 +0800 Subject: [PATCH] Advanced to version 1.5.9. --- 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 fe3fcba..2709861 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,17 @@ Change Log ========== +Version 1.5.9 +------------- + +Released 2023/10/24 + +Bug fix. + +* Refined to enable the selection of Accumulated Profit or Loss accounts other + than 3351-001, facilitating the consolidation of existing balances. + + Version 1.5.8 ------------- diff --git a/src/accounting/__init__.py b/src/accounting/__init__.py index e1dada9..4b9a6d1 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.8" +VERSION: str = "1.5.9" """The package version.""" db: SQLAlchemy = SQLAlchemy() """The database instance."""