Skip to content

Commit a9f8d41

Browse files
committed
Bump version to 0.7.3
1 parent d4bd4a0 commit a9f8d41

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
These logs are also available on GitHub: https://github.com/pivotal-energy-solutions/django-datatable-view/releases
44

5+
## 0.7.3
6+
This release fixes an exception that is raised when using Django 1.7 release candidate, involving the removal of the deprecated ``StrAndUnicode`` utility base class.
7+
58
## 0.7.2
69
This release fixes an issue involving ``verbose_name`` values wrapped in a proxy function used by
710
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".

datatableview/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
__name__ = 'datatableview'
33
__author__ = 'Tim Valenta'
4-
__version_info__ = (0, 7, 2)
4+
__version_info__ = (0, 7, 3)
55
__version__ = '.'.join(map(str, __version_info__))
66
__date__ = '2013/11/14 2:00:00 PM'
77
__credits__ = ['Tim Valenta', 'Steven Klass']

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
setup(name='django-datatable-view',
7-
version='0.7.2',
7+
version='0.7.3',
88
description='This package is used in conjunction with the jQuery plugin '
99
'(http://http://datatables.net/), and supports state-saving detection'
1010
' with (http://datatables.net/plug-ins/api). The package consists of '
@@ -13,7 +13,7 @@
1313
author='Tim Valenta',
1414
author_email='[email protected]',
1515
url='https://github.com/pivotal-energy-solutions/django-datatable-view',
16-
download_url='https://github.com/pivotal-energy-solutions/django-datatable-view/tarball/django-datatable-view-0.7.1',
16+
download_url='https://github.com/pivotal-energy-solutions/django-datatable-view/tarball/django-datatable-view-0.7.3',
1717
license='Apache License (2.0)',
1818
classifiers=[
1919
'Development Status :: 2 - Pre-Alpha',

0 commit comments

Comments
 (0)