# HG changeset patch # User paulb # Date 1169334919 0 # Node ID fbdb75bbf4865a0af1eecfd176cbfafdf328fc0e # Parent d85f94184b8611c93711a573585841540fe1369d [project @ 2007-01-20 23:15:16 by paulb] Updated release information. diff -r d85f94184b86 -r fbdb75bbf486 PKG-INFO --- a/PKG-INFO Fri Jun 20 22:37:50 2008 +0200 +++ b/PKG-INFO Sat Jan 20 23:15:19 2007 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: WebStack -Version: 1.2.1 +Version: 1.2.2 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie Maintainer-email: paul at boddie org uk Home-page: http://www.boddie.org.uk/python/WebStack.html -Download-url: http://www.boddie.org.uk/python/downloads/WebStack-1.2.1.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/WebStack-1.2.2.tar.gz Summary: Common API for Python Web applications License: LGPL Description: WebStack is a package which provides a common API for Python Web applications diff -r d85f94184b86 -r fbdb75bbf486 README.txt --- a/README.txt Fri Jun 20 22:37:50 2008 +0200 +++ b/README.txt Sat Jan 20 23:15:19 2007 +0000 @@ -34,6 +34,13 @@ See the docs/supported-frameworks.html document for more information. +New in WebStack 1.2.2 (Changes since WebStack 1.2.1) +---------------------------------------------------- + + * Added an EncodingSelector class for the setting of default encodings on + transactions. + * Added some documentation about path processing strategies. + New in WebStack 1.2.1 (Changes since WebStack 1.2) -------------------------------------------------- diff -r d85f94184b86 -r fbdb75bbf486 WebStack/__init__.py --- a/WebStack/__init__.py Fri Jun 20 22:37:50 2008 +0200 +++ b/WebStack/__init__.py Sat Jan 20 23:15:19 2007 +0000 @@ -20,6 +20,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -__version__ = "1.2.1" +__version__ = "1.2.2" # vim: tabstop=4 expandtab shiftwidth=4