From 798f1bc02182342b1a3b5112f4fa61ae1eb0b2f1 Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Mon, 23 Dec 2024 11:38:49 +0100 Subject: [PATCH] Bump version to 2.7.2 and update changelog --- CHANGELOG.md | 3 +++ django_tables2/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6173d6fb..836a178c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change log +## 2.7.2 (2024-12-23) +- Add python_requires to setup.py ([#982](https://github.com/jieter/django-tables2/pull/982)) Fixes: [#980](https://github.com/jieter/django-tables2/issues/980) + ## 2.7.1 (2024-12-21) - Add TimeColumn to built-in columns ([#937](https://github.com/jieter/django-tables2/pull/937)) by [@philipphanemann](https://github.com/philipphanemann) Add support to pass args/kwargs to callables from Accessor ([#940](https://github.com/jieter/django-tables2/pull/940)), fixes: [#939](https://github.com/jieter/django-tables2/issues/939) diff --git a/django_tables2/__init__.py b/django_tables2/__init__.py index e747f92e..ba15f995 100644 --- a/django_tables2/__init__.py +++ b/django_tables2/__init__.py @@ -20,7 +20,7 @@ from .utils import A from .views import MultiTableMixin, SingleTableMixin, SingleTableView -__version__ = "2.7.1" +__version__ = "2.7.2" __all__ = ( "Table",