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