From efe8e3d235f023c59697e429dfd5936956f03cbb Mon Sep 17 00:00:00 2001 From: Neil Schemenauer Date: Tue, 8 Dec 2015 11:21:09 -0800 Subject: [PATCH] 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. --- doc/upgrading.txt | 7 +++++++ quixote/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/upgrading.txt b/doc/upgrading.txt index 8a4f8dd..74ea818 100644 --- a/doc/upgrading.txt +++ b/doc/upgrading.txt @@ -5,6 +5,13 @@ This document lists backward-incompatible changes in Quixote, and explains how to update application code to work with the newer 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 ----------------------- diff --git a/quixote/__init__.py b/quixote/__init__.py index c6df943..fbf598e 100644 --- a/quixote/__init__.py +++ b/quixote/__init__.py @@ -3,7 +3,7 @@ A small and flexible Python web application framework. """ -__version__ = '2.8' +__version__ = '2.9' # These are frequently needed by Quixote applications. from quixote.publish import \