From 966a41c25e242652bae982e71fc3cdd9ed4a66bf Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Tue, 27 Jun 2023 11:40:34 +0200 Subject: [PATCH] Prepare release 2.6.0 (#921) --- CHANGELOG.md | 5 +++++ django_tables2/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 766c5353..626454f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change log +## 2.6.0 (2023-06-27) +- Fix bootstrap5-responsive template to extend bootstrap5 ([#909](https://github.com/jieter/django-tables2/pull/909)) by [@mschoettle](https://github.com/mschoettle) +- Add support for django 4.2 +- Drop python 3.7 and django 4.0 support ([#920](https://github.com/jieter/django-tables2/pull/920)) + ## 2.5.3 (2023-03-05) - Assign request to table before anything else in `RequestConfig.configure()` ([#888](https://github.com/jieter/django-tables2/pull/888)) fixes: [#865](https://github.com/jieter/django-tables2/issues/865) - Add type hints to get_context_data ([#895](https://github.com/jieter/django-tables2/pull/895)) by [@mschoettle](https://github.com/mschoettle) diff --git a/django_tables2/__init__.py b/django_tables2/__init__.py index 60d89a72..7d406b2d 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.5.3" +__version__ = "2.6.0" __all__ = ( "Table",