Update Readme

Version bump to 2.1.8
master
Brandon Taylor 2018-10-05 10:56:48 -04:00
parent 1ed27acbaa
commit 2688003ac9
3 changed files with 6 additions and 6 deletions

View File

@ -599,8 +599,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.7? ### What's new in 2.1.8?
- Bug fix for inlines that caused sorting to stop working. - Bug fix for sorting a queryset where a search may have been performed.
### 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

@ -55,7 +55,7 @@ Download django-admin-sortable from
`source <https://github.com/iambrandontaylor/django-admin-sortable/archive/master.zip>`__ `source <https://github.com/iambrandontaylor/django-admin-sortable/archive/master.zip>`__
1. Unzip the directory and cd into the uncompressed project directory 1. Unzip the directory and cd into the uncompressed project directory
2. 2.
- Optional: Enable your virtualenv - Optional: Enable your virtualenv
@ -731,10 +731,10 @@ Status
django-admin-sortable is currently used in production. django-admin-sortable is currently used in production.
Whats new in 2.1.7? Whats new in 2.1.8?
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
- Bug fix for inlines that caused sorting to stop working. - Bug fix for sorting a queryset where a search may have been performed.
Future Future
~~~~~~ ~~~~~~

View File

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