From aca00de070b0b4733f090f4954a2ff1839ab27a7 Mon Sep 17 00:00:00 2001 From: Tim Valenta Date: Tue, 13 Oct 2015 12:34:52 -0700 Subject: [PATCH] Set version number and simple change log --- CHANGELOG.md | 10 ++++++++++ setup.py | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30e21338..7a1bfd3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ These logs are also available on GitHub: https://github.com/pivotal-energy-solutions/django-datatable-view/releases +## 0.9.0-beta.1 +This is a transition release to get people to 1.0, which brings a lot of syntax changes for table declaration on the python view, adopting a strategy that looks a lot like Django's forms framework, +or django-rest-framework's serializers. + +0.9 will continue to offer backwards-compatible datatable declaration with the help of a ``LegacyConfigurationDatatableView`` as a baseclass. ``DatatableView`` will presume that the modern configuration style is being used and will raise errors accordingly. + +``wheel`` installation is also possible now. + +The live demo site at http://django-datatable-view.appspot.com will continue to operate WITHOUT this beta release, so experimenting with interactive documentation will require that you run the included example project, which includes a 0.9 migration guide. See the main README.md for quick instructions to get the example project running locally. + ## 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. diff --git a/setup.py b/setup.py index 17206cf9..1423343d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup(name='django-datatable-view', - version='0.9.0', + version='0.9.0-beta.1', 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 ' @@ -13,7 +13,7 @@ author='Tim Valenta', author_email='tvalenta@pivotalenergysolutions.com', 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.9.0', + download_url='https://github.com/pivotal-energy-solutions/django-datatable-view/tarball/django-datatable-view-0.9.0-beta.1', license='Apache License (2.0)', classifiers=[ 'Development Status :: 2 - Pre-Alpha',