From ae609e10daddcfe6af007d11bfc67870e7236fba Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Mon, 19 Mar 2018 21:32:39 -0400 Subject: [PATCH] Version bump to 2.1.4. Updated README --- README.md | 4 ++-- README.rst | 13 +++++++------ adminsortable/__init__.py | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 511f850..211aa7c 100644 --- a/README.md +++ b/README.md @@ -531,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.3? -- Norwegian and Latvian translations. Credit to [simenheg](https://github.com/simenheg) and [peterisb](https://github.com/peterisb) respectively. +### What's new in 2.1.4? +- Improved performance on large data sets. Credit to [mrmachine](https://github.com/mrmachine). ### 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 fa7506e..e71e708 100644 --- a/README.rst +++ b/README.rst @@ -51,7 +51,7 @@ Download django-admin-sortable from `source `__ 1. Unzip the directory and cd into the uncompressed project directory -2. +2. - Optional: Enable your virtualenv @@ -518,7 +518,9 @@ These attributes have default values of: change_form_template_extends = 'admin/change_form.html' change_list_template_extends = 'admin/change_list.html' -If you need to extend the inline change form templates, you'll need to select the right one, depending on your version of Django. For 1.10.x or below, you'll need to extend one of the following: +If you need to extend the inline change form templates, you’ll need to +select the right one, depending on your version of Django. For 1.10.x or +below, you’ll need to extend one of the following: :: @@ -655,12 +657,11 @@ Status django-admin-sortable is currently used in production. -What’s new in 2.1.3? +What’s new in 2.1.4? ~~~~~~~~~~~~~~~~~~~~ -- Norwegian and Latvian translations. Credit to - `simenheg `__ and - `peterisb `__ respectively. +- Improved performance on large data sets. Credit to + `mrmachine `__. Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 488e144..cc24828 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 3) +VERSION = (2, 1, 4) DEV_N = None