diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index ec34295..6eb0068 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,17 @@ Change Log ========== +Version 1.5.10 +-------------- + +Released 2023/11/28 + +Bug fix. + +* Fixed the form validator to enable the selection of Accumulated Profit or + Loss accounts other than 3351-001. + + Version 1.5.9 ------------- diff --git a/src/accounting/__init__.py b/src/accounting/__init__.py index 4b9a6d1..e0cb766 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.9" +VERSION: str = "1.5.10" """The package version.""" db: SQLAlchemy = SQLAlchemy() """The database instance."""