From a45f31cb595a1cbb8724c1d2854ae46052676fb4 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 21 May 2013 22:39:35 -0700 Subject: [PATCH] update changelog --- CHANGES.txt | 43 +++++++++++++++++++++++++++++++++++++ rattail/pyramid/_version.py | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 4b20bd43..479f406d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,47 @@ +0.3a22 +------ + +* Removed ``setup.cfg`` file. + +* Added ``Session`` to ``rattail.pyramid`` namespace. + +* Added Email Address field to Vendor CRUD views. + +* Added extra key lookups for customer and product routes. + + Now the CRUD routes for these objects can leverage UUIDs of various related + objects in addition to the primary object. More should be done with this, + but at least we have a start. + +* Replaced ``forms`` module with subpackage; added some initial goodies (many + of which are currently just imports from ``edbob``). + +* Added/edited various CRUD templates for consistency. + +* Modified several view modules so their Pyramid configuration is more + "extensible." This just means routes and views are defined as two separate + steps, so that derived applications may inherit the route definitions if they + so choose. + +* Added Employee CRUD views; added Email Address field to index view. + +* Updated ``people`` view module so it no longer derives from that of + ``edbob``. + +* Added support for, and some implementations of, extra key lookup abilities to + CRUD views. This allows URLs to use a "natural" key (e.g. Customer ID + instead of UUID), for cases where that is more helpful. + +* Product CRUD now uses autocomplete for Brand field. Also, price fields no + longer appear within an editable fieldset. + +* Within Store index view, default sort is now ID instead of Name. + +* Added Contact and Phone Number fields to Vendor CRUD views; added Contact and + Email Address fields to index view. + + 0.3a21 ------ diff --git a/rattail/pyramid/_version.py b/rattail/pyramid/_version.py index e6a63df3..631cb2f3 100644 --- a/rattail/pyramid/_version.py +++ b/rattail/pyramid/_version.py @@ -1 +1 @@ -__version__ = '0.3a21' +__version__ = '0.3a22'