diff --git a/README.md b/README.md index 33bcd0d..7f3d250 100644 --- a/README.md +++ b/README.md @@ -606,8 +606,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.11? -- Fixed missing `csrfmiddlewaretoken` in Ajax POST data. This affects Django 2.1.4 and higher. +### What's new in 2.1.12? +- Fixed multiple list filter issue that was causing incorrect sortable objects to be displayed ### 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 67e9a88..5492dda 100644 --- a/README.rst +++ b/README.rst @@ -745,10 +745,10 @@ Status django-admin-sortable is currently used in production. -What’s new in 2.1.11? +What’s new in 2.1.12? ~~~~~~~~~~~~~~~~~~~~~ -- Fixed missing `csrfmiddlewaretoken` in Ajax POST data. This affects Django 2.1.4 and higher. +- Fixed multiple list filter issue that was causing incorrect sortable objects to be displayed Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 5a61896..b7dcfef 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 11) +VERSION = (2, 1, 12) DEV_N = None