From 14365ca255550b9832f4e0b4651e7131db2eb015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 29 Jul 2023 13:02:40 +0800 Subject: [PATCH] Advanced to version 1.5.7. --- docs/source/changelog.rst | 21 +++++++++++++++++++++ src/accounting/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index db7c3e1..b5ccfc2 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,27 @@ Change Log ========== +Version 1.5.7 +------------- + +Released 2023/7/29 + +Revised account title capitalization to capitalize account titles +upon initialization of base accounts, rather than when displaying +the accounts. This prevents the system from incorrectly +capitalizing titles of user-added accounts. + +For existing installation, run the ``accounting-titleize`` console +command to capitalize the existing account titles that were already +initialized. + +Other fixes: + +* Added missing documentation to the global variables, class + properties, and object properties. +* Various minor fixes. + + Version 1.5.6 ------------- diff --git a/src/accounting/__init__.py b/src/accounting/__init__.py index 81a2fee..dc75c33 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.6" +VERSION: str = "1.5.7" """The package version.""" db: SQLAlchemy = SQLAlchemy() """The database instance."""