Prepare 2.9 release.

There was a packaging error for 2.8.  It included files not intended
to be released which broke the 'ptl' package.  This release repairs
that error and includes a small change to random session tokens.
This commit is contained in:
Neil Schemenauer 2015-12-08 11:21:09 -08:00
parent 410c030b50
commit efe8e3d235
2 changed files with 8 additions and 1 deletions

View File

@ -5,6 +5,13 @@ This document lists backward-incompatible changes in Quixote, and
explains how to update application code to work with the newer explains how to update application code to work with the newer
version. version.
Changes from 2.8 to 2.9
-----------------------
util.randbytes() returns a URL-safe base64 encoded token rather than
a hex encoded token. The session module now uses 128-bit random tokens
rather than 64-bit.
Changes from 2.7 to 2.8 Changes from 2.7 to 2.8
----------------------- -----------------------

View File

@ -3,7 +3,7 @@
A small and flexible Python web application framework. A small and flexible Python web application framework.
""" """
__version__ = '2.8' __version__ = '2.9'
# These are frequently needed by Quixote applications. # These are frequently needed by Quixote applications.
from quixote.publish import \ from quixote.publish import \