From 318bd2016742b3854930942c551f9ac4f819f8da Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Mon, 24 Nov 2014 10:14:26 -0500 Subject: Version increment. Change-Id: Ie6f9d4187ddc6e585d3ba7f5531376e54b403664 --- docs/source/changes.rst | 18 +++++++++++++----- setup.py | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/docs/source/changes.rst b/docs/source/changes.rst index 9c99268..536b262 100644 --- a/docs/source/changes.rst +++ b/docs/source/changes.rst @@ -1,13 +1,21 @@ +0.8.1 +===== +* Improved detection of infinite recursion for PecanHook and pypy. This fixes + a bug discovered in pecan + pypy that could result in infinite recursion when + using the PecanHook metaclass. +* Fixed a bug that prevented @exposed controllers from using @staticmethod. +* Fixed a minor bug in the controller argument calculation. + 0.8.0 ===== * For HTTP POSTs, map JSON request bodies to controller keyword arguments. - * Improve argspec detection and leniency for wrapped controllers. + * Improved argspec detection and leniency for wrapped controllers. * When path arguments are incorrect for RestController, return HTTP 404, not 400. * When detecting non-content for HTTP 204, properly catch UnicodeDecodeError. - * Fix a routing bug for generic subcontrollers. - * Fix a bug in generic function handling when context locals are disabled. - * Fix a bug that mixes up argument order for generic functions. - * Remove `assert` for flow control; it can be optimized away with `python -O`. + * Fixed a routing bug for generic subcontrollers. + * Fixed a bug in generic function handling when context locals are disabled. + * Fixed a bug that mixes up argument order for generic functions. + * Removed `assert` for flow control; it can be optimized away with `python -O`. 0.7.0 ===== diff --git a/setup.py b/setup.py index f001377..bf56386 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import platform from setuptools import setup, find_packages -version = '0.8.0' +version = '0.8.1' # # determine requirements -- cgit v1.2.1