diff --git a/.gitignore b/.gitignore index 4298eed..b451ec9 100644 --- a/.gitignore +++ b/.gitignore @@ -6,9 +6,6 @@ django_admin_sortable.egg-info *.pyo .idea atlassian-ide-plugin.xml -django-admin-sortable.sublime-project -django-admin-sortable.sublime-workspace -adminsortable.sublime-project -adminsortable.sublime-workspace +*.sublime-* .ropeproject -.codeintel \ No newline at end of file +.codeintel diff --git a/README.md b/README.md index de643f3..1c09643 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,12 @@ enabling individual items or groups of items to be sortable. ## Requirements jQuery +## Supported Django Versions +If you're using Django 1.4.x, use django-admin-sortable 1.4.9 or below. +For Django 1.5.x, use the latest version of django-admin-sortable. + +django-admin-sortable 1.5.2 introduces backward-incompatible changes for Django 1.4.x + ## Installation 1. pip install django-admin-sortable @@ -218,8 +224,8 @@ ordering on top of that just seemed a little much in my opinion. django-admin-sortable is currently used in production. -### What's new in 1.5.1? -- Fixed a bug that could cause the change_form template to not be populated correctly when adding a new record. +### What's new in 1.5.2? +- Added support for {% static %} template tag for Django 1.5.x (thanks @acgray) ### Future diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index e1c4760..0839a54 100755 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 5, 1) # following PEP 386 +VERSION = (1, 5, 2) # following PEP 386 DEV_N = None