From eec1837ed31650791d4476c842c2a3314fc01a23 Mon Sep 17 00:00:00 2001 From: Miguel Sanda Date: Sun, 29 Dec 2024 10:10:21 -0500 Subject: [PATCH] Bump version to 0.7.2 Update version in `pyproject.toml` and `__init__.py` to 0.7.2. This prepares the project for the new release by synchronizing version metadata. --- django_ledger/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django_ledger/__init__.py b/django_ledger/__init__.py index 893c01a1..5c244d8c 100644 --- a/django_ledger/__init__.py +++ b/django_ledger/__init__.py @@ -6,7 +6,7 @@ default_app_config = 'django_ledger.apps.DjangoLedgerConfig' """Django Ledger""" -__version__ = '0.7.1' +__version__ = '0.7.2' __license__ = 'GPLv3 License' __author__ = 'Miguel Sanda' diff --git a/pyproject.toml b/pyproject.toml index 30b02c63..85555988 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "django-ledger" -version = "0.7.1" +version = "0.7.2" readme = "README.md" requires-python = ">=3.10" description = "Double entry accounting system built on the Django Web Framework."