diff --git a/.travis.yml b/.travis.yml index fdabab6..80c0c11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,8 @@ python: env: - DJANGO_VERSION=1.5.10 SAMPLE_PROJECT=sample_project - DJANGO_VERSION=1.6.7 SAMPLE_PROJECT=sample_project - - DJANGO_VERSION=1.7 SAMPLE_PROJECT=sample_project + - DJANGO_VERSION=1.7.7 SAMPLE_PROJECT=sample_project + - DJANGO_VERSION=1.8 SAMPLE_PROJECT=sample_project branches: only: @@ -15,9 +16,6 @@ branches: matrix: exclude: - - - python: "2.7" - env: DJANGO_VERSION=1.7 SAMPLE_PROJECT=python3_sample_project - python: "3.4" @@ -27,10 +25,6 @@ matrix: python: "3.4" env: DJANGO_VERSION=1.6.7 SAMPLE_PROJECT=sample_project - - - python: "3.4" - env: DJANGO_VERSION=1.7 SAMPLE_PROJECT=sample_project - install: - pip install django==$DJANGO_VERSION diff --git a/README.md b/README.md index 9999014..d716c15 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://travis-ci.org/iambrandontaylor/django-admin-sortable.svg?branch=master)](https://travis-ci.org/iambrandontaylor/django-admin-sortable) -Current version: 1.8.2 +Current version: 1.8.3 This project makes it easy to add drag-and-drop ordering to any model in Django admin. Inlines for a sortable model may also be made sortable, @@ -409,16 +409,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.8.2? -- Added Polish translations. Thanks [@TomaszGabrysiak](https://github.com/TomaszGabrysiak). - - -### Deprecation warnings -There are a couple of Django 1.8 deprecation warnings that will be shown when using Python 3.x. These are regarding the following classes in Django that django-admin-sortable extends: -- django/forms/widgets.py: ComponentInline.queryset -- django/forms/widgets.py: WidgetAdmin.queryset - -These do not currently affect the functionality of django-admin-sortable and should go away once the underlying classes have been updated. +### What's new in 1.8.3? +- Django 1.8 compatibility. ### Future diff --git a/adminsortable/__init__.py b/adminsortable/__init__.py index 1da18e5..1cc6655 100644 --- a/adminsortable/__init__.py +++ b/adminsortable/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 8, 2) # following PEP 386 +VERSION = (1, 8, 3) # following PEP 386 DEV_N = None diff --git a/sample_project/database/test_project.sqlite b/sample_project/database/test_project.sqlite index 8d67387..9d92c7d 100644 Binary files a/sample_project/database/test_project.sqlite and b/sample_project/database/test_project.sqlite differ