From 257e22fb8a6616a31bab52f9d35af7a3d1316788 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Tue, 14 Jan 2020 18:31:00 -0500 Subject: [PATCH] Version bump to 2.2.1 Updated READMEs --- 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 41739c7..b0936cf 100644 --- a/README.md +++ b/README.md @@ -609,8 +609,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.2.0? -- Django 3 compatibility +### What's new in 2.2.1? +- Fixed overzealous selector in sortable inline tabular JavaScript code that was allowing the header row to be draggable. ### 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 03ad6ff..7dd8836 100644 --- a/README.rst +++ b/README.rst @@ -59,7 +59,7 @@ Download django-admin-sortable from 1. Unzip the directory and cd into the uncompressed project directory -2. +2. - Optional: Enable your virtualenv @@ -751,10 +751,10 @@ Status django-admin-sortable is currently used in production. -What’s new in 2.2.0? +What’s new in 2.2.1? ~~~~~~~~~~~~~~~~~~~~ -- Django 3 compatibility +- Fixed overzealous selector in sortable inline tabular JavaScript code that was allowing the header row to be draggable. Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 79208d5..17ea697 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 2, 0) +VERSION = (2, 2, 1) DEV_N = None