Skip to content

Commit 3ebb17d

Browse files
committed
Add 0.7.1 notes
1 parent 117f808 commit 3ebb17d

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

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

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

5+
## 0.7.1
6+
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.
7+
8+
The ``default_structure.html`` template has received a minor update to include the use of a CSS class ``"display"`` on the table, which how the datatables.js 1.10.0 version has begun to show examples on their documentation website, which gives the table a more modern default appearance. The bootstrap template is unchanged.
9+
10+
A fix from @michaeldjeffrey should allow the browser's locale setting to control how the number of results is rendered in the table footer.
11+
12+
A fix from @danmac-uk has been merged that adds Django 1.7 support, because of our current use of Django's ``StrAndUnicode`` base class for the template-renderable datatable object.
13+
14+
Various updates were made to the example project including a fix for "None" table headers in the embedded table demo.
15+
16+
New issues are being tracked at the github repository and we're building our milestone goals for release 1.0. We would like to include a streamlined strategy for column filters, an updated configuration strategy, and new callbacks to simplify support for datatables new ``"DT_RowData"`` key and modifying the internals of how special field types are handled for ORM querying.
17+
518
## 0.7.0
619
This release adds Python 3 support with the help of the [six](http://pythonhosted.org/six/) project. We've taken some time to verify that unicode handling is handled correctly for both Python 2 and 3 simultaneously.
720

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, 0)
4+
__version_info__ = (0, 7, 1)
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.0',
7+
version='0.7.1',
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.0',
16+
download_url='https://github.com/pivotal-energy-solutions/django-datatable-view/tarball/django-datatable-view-0.7.1',
1717
license='Apache License (2.0)',
1818
classifiers=[
1919
'Development Status :: 2 - Pre-Alpha',

0 commit comments

Comments
 (0)