diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 7a55731..1923519 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,14 @@ Change Log ========== +Version 1.6.1 +-------------- + +Released 2024/12/3 + +Fixed to work with httpx 0.28.0. + + Version 1.6.0 -------------- diff --git a/src/accounting/__init__.py b/src/accounting/__init__.py index 06505a7..6e60cc2 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.6.0" +VERSION: str = "1.6.1" """The package version.""" db: SQLAlchemy = SQLAlchemy() """The database instance."""