From ff3c78b065b9bcc7b28fc4a7b476e1e648a913d1 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 28 Jul 2015 16:09:41 -0400 Subject: [PATCH] Version increment. --- docs/source/changes.rst | 14 ++++++++++++++ setup.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/source/changes.rst b/docs/source/changes.rst index ce3a3aa..53ff96a 100644 --- a/docs/source/changes.rst +++ b/docs/source/changes.rst @@ -1,3 +1,17 @@ +1.0.0 +===== +* Replaced pecan's debugger middleware with an (optional) dependency on the + `backlash` package. Developers who want to debug application-level + tracebacks interactively should `pip install backlash` in their development + environment. +* Fixed a Content-Type related bug: when an explicit content_type is specified + as an argument to `pecan.expose()`, it is now given precedence over the + application-level default renderer. +* Fixed a bug that prevented the usage of certain RFC3986-specified characters + in path segments. +* Fixed a bug in `pecan.abort` which suppressed the original traceback (and + prevented monitoring tools like NewRelic from working as effectively). + 0.9.0 ===== * Support for Python 3.2 has been dropped. diff --git a/setup.py b/setup.py index 46bcd69..c1878c1 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import platform from setuptools import setup, find_packages -version = '0.9.0' +version = '1.0.0' # # determine requirements