From 26b11e8b41ff04de0b652aa134ef324c4a671d5c Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Thu, 14 Feb 2019 16:07:35 -0500 Subject: [PATCH] Version bump to 2.1.12 Updates to readme --- README.md | 4 ++-- README.rst | 4 ++-- adminsortable/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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