diff --git a/CHANGELOG.md b/CHANGELOG.md index a5ec66bd..989795fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ These logs are also available on GitHub: https://github.com/pivotal-energy-solutions/django-datatable-view/releases +## 0.7.2 +This release fixes an issue involving ``verbose_name`` values wrapped in a proxy function used by +Django to defer instantiation of an underlying object. These proxy values could not go through the ``re`` framework without raising errors about "expecting a string or buffer". + ## 0.7.1 This release reverts a change to the Javascript that could cause errors in some cases. A fix will be reintroduced at a later time to correct a potential issue with Chrome and Safari not updating the footer text when a filter is applied. diff --git a/datatableview/__init__.py b/datatableview/__init__.py index 5c6154c6..012da9ea 100644 --- a/datatableview/__init__.py +++ b/datatableview/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- __name__ = 'datatableview' __author__ = 'Tim Valenta' -__version_info__ = (0, 7, 1) +__version_info__ = (0, 7, 2) __version__ = '.'.join(map(str, __version_info__)) __date__ = '2013/11/14 2:00:00 PM' __credits__ = ['Tim Valenta', 'Steven Klass'] diff --git a/setup.py b/setup.py index 27b14447..d61f6dfe 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup(name='django-datatable-view', - version='0.7.1', + version='0.7.2', description='This package is used in conjunction with the jQuery plugin ' '(http://http://datatables.net/), and supports state-saving detection' ' with (http://datatables.net/plug-ins/api). The package consists of '