From 844b51456fa76eb4c725033fc2a039274007b3be Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Tue, 21 Dec 2021 20:37:48 -0500 Subject: [PATCH] - Version bump to 2.3.0 - Updated readme --- README.md | 8 +++++--- README.rst | 8 +++++--- adminsortable/__init__.py | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index fb9d008..2e27ea7 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,9 @@ Sorting inlines: ![sortable-inlines](http://res.cloudinary.com/alsoicode/image/upload/v1451237555/django-admin-sortable/sortable-inlines.jpg) ## Supported Django Versions -For Django 3 and 4 use the latest version +For Django 4 use the latest version + +For Django 3 use 2.2.4 For Django 1.8.x < 3.0, use 2.1.8. @@ -668,8 +670,8 @@ ordering on top of that just seemed a little much in my opinion. ### Status django-admin-sortable is currently used in production. -### What's new in 2.2.3? -- Updated inline sortable templates to fix FontAwesome icon visibility and be compatible with Django 2 & 3. +### What's new in 2.3.0? +- Django 4 compatibility ### Future - Better template support for foreign keys that are self referential. If someone would like to take on rendering recursive sortables, that would be super. diff --git a/README.rst b/README.rst index 5c5c05a..3d08a92 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,9 @@ Sorting inlines: Supported Django Versions ------------------------- -For Django 3 and 4 use the latest version +For Django 4 use the latest version + +For Django 3 use 2.2.4 For Django 1.8.x < 3.0, use 2.1.8. @@ -751,10 +753,10 @@ Status django-admin-sortable is currently used in production. -What’s new in 2.2.3? +What’s new in 2.3.0? ~~~~~~~~~~~~~~~~~~~~ -- Updated inline sortable templates to fix FontAwesome icon visibility and be compatible with Django 2 & 3. +- Django 4 compatibility Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 73a03c1..fbbe635 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 2, 4) +VERSION = (2, 3, 0) DEV_N = None