diff --git a/README.rst b/README.rst index 36b805b..624d134 100644 --- a/README.rst +++ b/README.rst @@ -94,3 +94,8 @@ Release Notes ----- * Support for Django 1.7 + +0.5.0 +----- + +* Can specify properties to use instead of database field names in .register() function. diff --git a/setup.py b/setup.py index f3885a3..f44efd3 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = "django-vinaigrette", - version = "0.4.0", + version = "0.5.0", packages = find_packages(), description = description, author = "Ecometrica", diff --git a/vinaigrette/__init__.py b/vinaigrette/__init__.py index 124b3e2..5c24c98 100644 --- a/vinaigrette/__init__.py +++ b/vinaigrette/__init__.py @@ -8,7 +8,7 @@ from django.core.urlresolvers import reverse from django.utils.translation import ugettext, ugettext_lazy, activate, get_language -VERSION = "0.4.0" +VERSION = "0.5.0" class VinaigretteError(Exception): pass