Merge branch '0.12.x'

This commit is contained in:
Dirk Eschler 2018-01-26 10:24:22 +01:00
commit 413ee22c61
4 changed files with 11 additions and 2 deletions

View file

@ -44,6 +44,7 @@ Contributors
* oliphunt
* Venelin Stoykov
* Stratos Moros
* Benjamin Toueg
* And many more ... (if you miss your name here, please let us know!)
.. _django-linguo: https://github.com/zmathew/django-linguo

View file

@ -1,3 +1,11 @@
v0.12.2
=======
Date: 2017-01-26
FIXED: order_by with expression
(resolves issue #398, thanks Benjamin Toueg)
v0.12.1
=======
Date: 2017-04-05

View file

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: django-modeltranslation
Version: 0.12.1
Version: 0.12.2
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, 12, 1, 'final', 0)
VERSION = (0, 12, 2, 'final', 0)
default_app_config = 'modeltranslation.apps.ModeltranslationConfig'