From 2fa240f9f792649e197d23f8d91b46037ae90ebc Mon Sep 17 00:00:00 2001 From: Rory Geoghegan Date: Fri, 18 Apr 2014 13:18:33 -0400 Subject: [PATCH] Updated release number to 0.2.0 and fixed up README. --- README.rst | 25 +++++++++++++++++++++++-- setup.py | 2 +- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index adfe7ba..91e3eba 100644 --- a/README.rst +++ b/README.rst @@ -30,7 +30,6 @@ be the string translated into the appropriate language:: >>> i.name u'Laitue' -========= Et cetera ========= @@ -62,4 +61,26 @@ to the database. For example: u'Chou' >>> i.save() >>> Ingredient.objects.get(name='Cabbage').name - u'Chou' \ No newline at end of file + u'Chou' + +Help! The Admin is messing up all the vinaigrette fields whenever I save changes! +--------------------------------------------------------------------------------- + +Use `vinaigrette.VinaigrettteAdminLanguageMiddleware` to force the admin to +always use the main language, and not have vinaigrette mess with your +change views. + +============= +Release Notes +============= + +0.1.3 +----- + +* Support for Django 1.6. + +0.2.0 +----- + +* New VinaigrettteAdminLanguageMiddleware middleware. +* Bug fix for the --all option, it now works again. diff --git a/setup.py b/setup.py index d159fcf..6de5039 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = "django-vinaigrette", - version = "0.1.3", + version = "0.2.0", packages = find_packages(), description = description, author = "Ecometrica",