Skip to content

Commit

Permalink
Bump version to 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tiliv committed Jun 3, 2015
1 parent 73697e1 commit 110bf4f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

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

## 0.8.2
#### Important future note
This is the last planned release for the 0.8 series! 0.9 and 1.0 will arrive simultaneously sometime during the next couple of weeks, and the entire declaration process for datatableview options has been modernized.

0.9 will include all of the existing "legacy" configuration code from the 0.8 releases, powered by brand new internals. 0.9 will be a no-fuss update, but if you plan to jump up to 1.0, you will need to following the forthcoming migration guide to get away from these "legacy" delcaration syntaxes.

#### Release notes

This release fixes a number of internal issues for newer versions of Django, most notably the tests! With the introduction of Django's AppConfig system, the hack we've been using (keeping a testing-only app with testing-only models nested inside of the main datatableview app) was broken by a change concerning which app label Django thought the model belonged to. The tests themselves were doing okay, had they not been failing during the fixture loading process.

@PamelaM has added initial support for including Travis testing into the repository, which is long overdue for a repository that has been gaining popularity over the last couple of years. I will commit to keeping up with it since, as they sometimes say, an untested app is considered broken by default.

Another Django 1.7 bug with related model fields was fixed, also thanks to @PamelaM.

Other miscellaneous changes:

* The ``datatableview.utils.FIELD_TYPES`` dictionary is now a ``defaultdict(list)`` (@davidfischer-ch)
* PEP-8 spacing changes (@davidfischer-ch)
* Added a ``queryset.distinct()`` to get around some funny ``Q()`` math (@@davidfischer-ch)
* Added/fixed various utf-8 encoding declarations on source files (@davidfischer-ch)
* Preemptive fixes for Django 1.8 and 1.9 import locations (@greenbender)
* Corrected string coercion when ugettext strings were being used as the starting point for looking up a method name (@akx)

## 0.8.1
This release fixes a Django >=1.7 compatibility bug where ORM query lookups would traverse a m2m relationship and incorrectly discover the manager to be a callable value function.

Expand Down
2 changes: 1 addition & 1 deletion datatableview/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__name__ = 'datatableview'
__author__ = 'Tim Valenta'
__version_info__ = (0, 8, 1)
__version_info__ = (0, 8, 2)
__version__ = '.'.join(map(str, __version_info__))
__date__ = '2013/11/14 2:00:00 PM'
__credits__ = ['Tim Valenta', 'Steven Klass']
Expand Down
4 changes: 2 additions & 2 deletions 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.8.1',
version='0.8.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 All @@ -13,7 +13,7 @@
author='Tim Valenta',
author_email='[email protected]',
url='https://github.com/pivotal-energy-solutions/django-datatable-view',
download_url='https://github.com/pivotal-energy-solutions/django-datatable-view/tarball/django-datatable-view-0.8.1',
download_url='https://github.com/pivotal-energy-solutions/django-datatable-view/tarball/django-datatable-view-0.8.2',
license='Apache License (2.0)',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
Expand Down

0 comments on commit 110bf4f

Please sign in to comment.