From c858fb3ce940e98121b93da1263f24b7e45e02ba Mon Sep 17 00:00:00 2001 From: Dan Jacka Date: Mon, 18 Jun 2012 23:12:00 +1200 Subject: [PATCH] Prepare collective.table 1.1 --- README.rst | 2 +- docs/HISTORY.txt | 10 ++++++++++ docs/sphinx/index.rst | 2 +- setup.py | 4 ++-- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 741230c..9d24833 100644 --- a/README.rst +++ b/README.rst @@ -5,7 +5,7 @@ Easy storage of tabular data collective.table is a replacement for the "store equipment lists, book loans, etc. in Excel files and upload to Plone". It's a list of items where members can add/edit columns and rows and of course data. By default, collective.table -stores it's data in the ZODB, however storage is pluggable and it's easy to +stores its data in the ZODB, however storage is pluggable and it's easy to write storage adapters to have data stored in SQL, LDAP, etc. collective.table is based on `DataTables `_ and diff --git a/docs/HISTORY.txt b/docs/HISTORY.txt index 767ebe8..ac9e4ff 100644 --- a/docs/HISTORY.txt +++ b/docs/HISTORY.txt @@ -1,6 +1,16 @@ Changelog ========= +1.1 (2012-06-18) +---------------- + +* Restore form values in the request to string after ``processInputs`` + converts them to unicode for ``z3c.form``. [danjacka] +* Force ``beforepost`` callback to hide spinner graphic when closing + the popup. [danjacka] +* Minor updates to buildout, documentation, tests. [danjacka] + + 1.0.1 (2011-08-22) ------------------ diff --git a/docs/sphinx/index.rst b/docs/sphinx/index.rst index 4998096..99f2f1d 100644 --- a/docs/sphinx/index.rst +++ b/docs/sphinx/index.rst @@ -3,7 +3,7 @@ Developer documentation for collective.table ============================================ :Project title: collective.table -:Latest version: 1.0.1 +:Latest version: 1.1 :Project page: http://pypi.python.org/pypi/collective.table :Source: http://github.com/collective/collective.table diff --git a/setup.py b/setup.py index 8ce8332..bb1a687 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = '1.0.2dev' +version = '1.1' setup(name='collective.table', version=version, @@ -21,7 +21,7 @@ keywords='plone table data', author='Jarn AS', author_email='info@jarn.com', - url='http://svn.plone.org/svn/collective/collective.table', + url='http://github.com/collective/collective.table', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['collective'],