Skip to content

Commit

Permalink
Release notes for 0.7.2 bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
tiliv committed Jul 14, 2014
1 parent 1566283 commit 3095b69
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion datatableview/__init__.py
Original file line number Diff line number Diff line change
@@ -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']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 '
Expand Down

0 comments on commit 3095b69

Please sign in to comment.