diff --git a/AUTHORS.rst b/AUTHORS.rst index e7f4c55c..f232ee90 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -39,6 +39,9 @@ Contributors * Mathias Ettinger * Daniel Loeb * Stephen McDonald +* Lukas Lundgren +* zenoamaro +* oliphunt * 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 e387b2a6..a148df2b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,17 @@ +v0.10.0 +======= +Date: 2015-07-03 + + ADDED: CSS support for bi-directional languages to TranslationAdmin + using mt-bidi class. + (resolves issue #317, thanks oliphunt) + ADDED: A decorator to handle registration of models. + (resolves issue #318, thanks zenoamaro) + + FIXED: Handled annotation fields when using values_list. + (resolves issue #321, thanks Lukas Lundgren) + + v0.9.1 ====== Date: 2015-05-14 diff --git a/PKG-INFO b/PKG-INFO index dcec7e6e..accdf82a 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: django-modeltranslation -Version: 0.9.1 +Version: 0.10.0 Summary: Translates Django models using a registration approach. Home-page: https://github.com/deschler/django-modeltranslation Author: Peter Eschler, diff --git a/docs/modeltranslation/conf.py b/docs/modeltranslation/conf.py index a9feb535..d4c63429 100644 --- a/docs/modeltranslation/conf.py +++ b/docs/modeltranslation/conf.py @@ -73,7 +73,7 @@ # General information about the project. project = u'django-modeltranslation' -copyright = u'2009-2014, Peter Eschler, Dirk Eschler, Jacek Tomaszewski' +copyright = u'2009-2015, Peter Eschler, Dirk Eschler, Jacek Tomaszewski' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -279,7 +279,7 @@ epub_title = u'django-modeltranslation' epub_author = u'Dirk Eschler' epub_publisher = u'Dirk Eschler' -epub_copyright = u'2009-2014, Peter Eschler, Dirk Eschler, Jacek Tomaszewski' +epub_copyright = u'2009-2015, Peter Eschler, Dirk Eschler, Jacek Tomaszewski' # The language of the text. It defaults to the language option # or en if the language is not set. diff --git a/docs/modeltranslation/registration.rst b/docs/modeltranslation/registration.rst index cc5831f8..4322f8b9 100644 --- a/docs/modeltranslation/registration.rst +++ b/docs/modeltranslation/registration.rst @@ -50,9 +50,11 @@ only imported. The ``NewsTranslationOptions`` derives from ``TranslationOptions`` and provides the ``fields`` attribute. Finally the model and its translation options are registered at the ``translator`` object. +.. versionadded:: 0.10 + If you prefer, ``register`` is also available as a decorator, much like the one Django introduced for its admin in version 1.7. Usage is similar to the -standard ``register``, just provide arguments as you normally would, except +standard ``register``, just provide arguments as you normally would, except the options class which will be the decorated one:: from modeltranslation.translator import register, TranslationOptions diff --git a/modeltranslation/__init__.py b/modeltranslation/__init__.py index d18b51ed..a4b04b2e 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, 9, 1, 'final', 0) +VERSION = (0, 10, 0, 'final', 0) default_app_config = 'modeltranslation.apps.ModeltranslationConfig'