From 2688003ac9a5f996e61cf51b256c903ac30c791b Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Fri, 5 Oct 2018 10:56:48 -0400 Subject: [PATCH] Update Readme Version bump to 2.1.8 --- README.md | 4 ++-- README.rst | 6 +++--- adminsortable/__init__.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dafe5e0..c6cc2ce 100644 --- a/README.md +++ b/README.md @@ -599,8 +599,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.7? -- Bug fix for inlines that caused sorting to stop working. +### What's new in 2.1.8? +- Bug fix for sorting a queryset where a search may have been performed. ### 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 75550f3..1a466b4 100644 --- a/README.rst +++ b/README.rst @@ -55,7 +55,7 @@ Download django-admin-sortable from `source `__ 1. Unzip the directory and cd into the uncompressed project directory -2. +2. - Optional: Enable your virtualenv @@ -731,10 +731,10 @@ Status 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 ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 137abb3..4f77779 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 7) +VERSION = (2, 1, 8) DEV_N = None