Version bump to 2.1.7.

Updated readme.
master
Brandon Taylor 2018-06-29 08:27:11 -04:00
parent e87a1444b4
commit 3f49a72a6d
3 changed files with 9 additions and 6 deletions

View File

@ -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 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 ## Installation
1. `$ pip install django-admin-sortable` 1. `$ pip install django-admin-sortable`
@ -595,8 +597,8 @@ ordering on top of that just seemed a little much in my opinion.
### Status ### Status
django-admin-sortable is currently used in production. django-admin-sortable is currently used in production.
### What's new in 2.1.6? ### What's new in 2.1.7?
- Added inclusion of custom JavaScript callbacks after sorting is performed, if desired. - Bug fix for inlines that caused sorting to stop working.
### Future ### 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. - Better template support for foreign keys that are self referential. If someone would like to take on rendering recursive sortables, that would be super.

View File

@ -42,6 +42,8 @@ the new tuple-based format if you havent already.
django-admin-sortable 1.7.1 and higher are compatible with Python 3. django-admin-sortable 1.7.1 and higher are compatible with Python 3.
django-admin-sortable 2.1.6 ihas a bug. Please dont use it :)
Installation Installation
------------ ------------
@ -729,11 +731,10 @@ Status
django-admin-sortable is currently used in production. django-admin-sortable is currently used in production.
Whats new in 2.1.5? Whats new in 2.1.7?
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
- Support for Django Admin filters. Credit to - Bug fix for inlines that caused sorting to stop working.
`timur-orudzhov <https://github.com/timur-orudzhov>`__.
Future Future
~~~~~~ ~~~~~~

View File

@ -1,4 +1,4 @@
VERSION = (2, 1, 6) VERSION = (2, 1, 7)
DEV_N = None DEV_N = None