diff --git a/AUTHORS.rst b/AUTHORS.rst index f12e191..fc2415e 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -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 diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8e6ec3b..25dcafd 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/PKG-INFO b/PKG-INFO index b9b05b2..2ebc3ef 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -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, diff --git a/modeltranslation/__init__.py b/modeltranslation/__init__.py index 5f00654..188cd00 100644 --- a/modeltranslation/__init__.py +++ b/modeltranslation/__init__.py @@ -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'