From 5c4580f5749e8084ba7f91a4e2101eab5c1cf28e Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 9 Apr 2013 11:07:25 -0400 Subject: [PATCH] Increment version number. --- docs/source/changes.rst | 10 ++++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/source/changes.rst b/docs/source/changes.rst index b01b3ec..9a6cefe 100644 --- a/docs/source/changes.rst +++ b/docs/source/changes.rst @@ -1,3 +1,13 @@ +0.2.2 +===== +* Unobfuscate syntax highlighting JavaScript for debian packaging. +* Extract the scaffold-building tests into tox. +* Add support for specifying a pecan configuration file via the + ``PECAN_CONFIG`` + environment variable. +* Fix a bug in ``DELETE`` methods in two (or more) nested ``RestControllers``. +* Add documentation for returning specific HTTP status codes. + 0.2.1 ===== diff --git a/docs/source/conf.py b/docs/source/conf.py index 4da67c3..163224d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -49,9 +49,9 @@ copyright = u'2010, Jonathan LaCour' # built documents. # # The short X.Y version. -version = '0.2.1' +version = '0.2.2' # The full version, including alpha/beta/rc tags. -release = '0.2.1' +release = '0.2.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index ec64789..10b3886 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import sys from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand -version = '0.2.1' +version = '0.2.2' # # determine requirements