From 4e0c23a1e5bddaaa1bfe46655961d2967b1ad264 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Fri, 13 Oct 2017 06:40:35 -0400 Subject: [PATCH] Version bump to 2.1.1. Updated readme files. --- README.md | 11 ++++++----- README.rst | 16 +++++++--------- adminsortable/__init__.py | 2 +- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index ccfe141..d98a8e3 100644 --- a/README.md +++ b/README.md @@ -466,9 +466,10 @@ the extrahead block with: {% block extrahead %} {{ block.super }} - - - + + + + {% endblock extrahead %} @@ -530,8 +531,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? -- Removed fallbacks for Django 1.8, Tox testing and many performance improvements [Pull Request 168](https://github.com/iambrandontaylor/django-admin-sortable/pull/168) thanks [@sushifan](https://github.com/jaap3) +### What's new in 2.1.1? +- Touch support ### 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 be69a9b..e120259 100644 --- a/README.rst +++ b/README.rst @@ -582,9 +582,10 @@ minimum need to extend the extrahead block with: {% block extrahead %} {{ block.super }} - - - + + + + {% endblock extrahead %} @@ -656,13 +657,10 @@ Status django-admin-sortable is currently used in production. -What's new in 2.1? -~~~~~~~~~~~~~~~~~~ +What's new in 2.1.1? +~~~~~~~~~~~~~~~~~~~~ -- Removed fallbacks for Django 1.8, Tox testing and many performance - improvements `Pull Request - 168 `__ - thanks [@sushifan](https://github.com/jaap3) +- Touch support Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 5b42c1f..1a5d0c1 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 0) +VERSION = (2, 1, 1) DEV_N = None