diff --git a/README.md b/README.md index e32cf80..dc7a48f 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.13? -- Fixed an issue when sorting was performed on an object referenced by a raw_id field +### What's new in 2.1.14? +- Improved filtering of querystring values. Thanks to [@stephrdev](https://github.com/stephrdev) ### 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 ebdc33f..ba47193 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.13? +What’s new in 2.1.14? ~~~~~~~~~~~~~~~~~~~~~ -- Fixed an issue when sorting was performed on an object referenced by a raw_id field +- Improved filtering of querystring values. Thanks to `@stephrdev ` Future ~~~~~~ diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 5e6cb6d..5c3b630 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 13) +VERSION = (2, 1, 14) DEV_N = None