Version bump to 1.8.3.

Updated readme with 1.8.3 information.
Updated travis configuration to remove deprecated config settings.
master
Brandon Taylor 2015-04-08 22:16:20 -04:00
parent ad09081ab4
commit ef05c0f7cb
4 changed files with 6 additions and 20 deletions

View File

@ -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

View File

@ -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

View File

@ -1,4 +1,4 @@
VERSION = (1, 8, 2) # following PEP 386
VERSION = (1, 8, 3) # following PEP 386
DEV_N = None