From 3f49a72a6dcc408267338c1adcb4711cbb96c4b4 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Fri, 29 Jun 2018 08:27:11 -0400 Subject: [PATCH] Version bump to 2.1.7. Updated readme. --- README.md | 6 ++++-- README.rst | 7 ++++--- adminsortable/__init__.py | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 90eda8f..a3b421c 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,8 @@ django-admin-sortable 1.6.6 introduced a backward-incompatible change for the `s django-admin-sortable 1.7.1 and higher are compatible with Python 3. +django-admin-sortable 2.1.6 ihas a bug. Please don't use it :) + ## Installation 1. `$ pip install django-admin-sortable` @@ -595,8 +597,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.1.6? -- Added inclusion of custom JavaScript callbacks after sorting is performed, if desired. +### What's new in 2.1.7? +- Bug fix for inlines that caused sorting to stop working. ### 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 697a545..75550f3 100644 --- a/README.rst +++ b/README.rst @@ -42,6 +42,8 @@ the new tuple-based format if you haven’t already. django-admin-sortable 1.7.1 and higher are compatible with Python 3. +django-admin-sortable 2.1.6 ihas a bug. Please don’t use it :) + Installation ------------ @@ -729,11 +731,10 @@ Status django-admin-sortable is currently used in production. -What’s new in 2.1.5? +What’s new in 2.1.7? ~~~~~~~~~~~~~~~~~~~~ -- Support for Django Admin filters. Credit to - `timur-orudzhov `__. +- Bug fix for inlines that caused sorting to stop working. Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 7785520..137abb3 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 6) +VERSION = (2, 1, 7) DEV_N = None