From 47944767dc36c6f749c630b7c36d081ec6ff3783 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 30 Aug 2013 20:17:03 -0700 Subject: [PATCH] update changelog --- CHANGES.rst | 47 +++++++++++++++++++++++++++++++++++++ rattail/pyramid/_version.py | 2 +- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 13ed4cf3..bc96077c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,4 +1,51 @@ +0.3.1 +----- + +* Added some tests. + +* Added ``helpers`` module. + + Also added a Pyramid subscriber hook to add the module to the template + renderer context with a key of ``h``. This is nothing really new, but it + overrides the helper provided by ``edbob``, and adds a ``pretty_date()`` + function (which maybe isn't a good idea anyway..?). + +* Added ``simpleform`` wildcard import to ``forms`` module. + +* Added autocomplete view and template. + +* Fixed customer group deletion. + + Now any customer associations are dropped first, to avoid database integrity + errors. + +* Stole grids and grid-based views from ``edbob``. + +* Removed several references to ``edbob``. + +* Replaced ``Grid.clickable`` with ``.viewable``. + + Clickable grid rows seemed to be more irritating than useful. Now a view + icon is shown instead. + +* Added style for grid checkbox cells. + +* Fixed FormAlchemy table rendering when underlying session is not primary. + + This was needed for a grid based on a LOC SMS session. + +* Added grid sort arrow images. + +* Improved query modification logic in alchemy grid views. + +* Overhauled report views to allow easier template customization. + +* Improved product UPC search so check digit is optional. + +* Fixed import issue with ``views.reports`` module. + + 0.3a23 ------ diff --git a/rattail/pyramid/_version.py b/rattail/pyramid/_version.py index da7ab9dc..e1424ed0 100644 --- a/rattail/pyramid/_version.py +++ b/rattail/pyramid/_version.py @@ -1 +1 @@ -__version__ = '0.3a23' +__version__ = '0.3.1'