Prepared 0.12 release.

This commit is contained in:
Dirk Eschler 2016-09-20 18:07:15 +02:00
parent fd3a674e9f
commit 257f59de97
3 changed files with 16 additions and 4 deletions

View file

@ -1,11 +1,23 @@
v0.12
=====
Date: ???
Date: 2016-09-20
ADDED: Support for Django 1.10.
(resolves issue #360, thanks Jacek Tomaszewski and Primož Kerin)
ADDED: Support for Django 1.10
CHANGED: Original field value became more unreliable and undetermined;
please make sure you're not using it anywhere. See
http://django-modeltranslation.readthedocs.io/en/latest/usage.html#the-state-of-the-original-field
CHANGED: Let register decorator return decorated class
(resolves issue #360, thanks spacediver)
FIXED: Deferred classes signal connection.
(resolves issue #379, thanks Jacek Tomaszewski)
FIXED: values_list + annotate combo bug.
(resolves issue #374, thanks Jacek Tomaszewski)
FIXED: Several flake8 and travis related issues.
(resolves issues #363, thanks Matthias K)
v0.11
=====

View file

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: django-modeltranslation
Version: 0.11
Version: 0.12
Summary: Translates Django models using a registration approach.
Home-page: https://github.com/deschler/django-modeltranslation
Author: Peter Eschler,

View file

@ -3,7 +3,7 @@
Version code adopted from Django development version.
https://github.com/django/django
"""
VERSION = (0, 11, 0, 'final', 0)
VERSION = (0, 12, 0, 'final', 0)
default_app_config = 'modeltranslation.apps.ModeltranslationConfig'