From 591afdfe7a9bf1df2eff70e4411b0430521a600b Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Sat, 21 Dec 2024 11:03:50 +0100 Subject: [PATCH] Bump version to 2.7.1 and document changes --- CHANGELOG.md | 8 ++++++++ django_tables2/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1315aaf6..6173d6fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change log +## 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) +by [@JordanHyatt](https://github.com/JordanHyatt) +- Drop support for Django 3.2, 4.1 and python 3.8 +- Add support for Django 5.1 and python 3.12 +- Explicitly set `Column.accessor` when binding a column to allow column methods like `order_by` to use its value ([#979](https://github.com/jieter/django-tables2/pull/979)) + ## 2.7.0 (2023-12-05) - Update docs dependencies; fix docs search; add readthedocs.yaml ([#935](https://github.com/jieter/django-tables2/pull/935)) - Add example on how to use `Accessor` to documentation in `custom-data.rst` ([#917](https://github.com/jieter/django-tables2/pull/917)) by [@ruddra](https://github.com/ruddra) diff --git a/django_tables2/__init__.py b/django_tables2/__init__.py index 991db711..e747f92e 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.0" +__version__ = "2.7.1" __all__ = ( "Table",