From e985be86ae89eccfe3c344196112b31a265ab741 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 7 May 2013 11:20:40 -0400 Subject: [PATCH] Version increment. --- docs/source/changes.rst | 5 +++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/source/changes.rst b/docs/source/changes.rst index 26453d4..b2d6540 100644 --- a/docs/source/changes.rst +++ b/docs/source/changes.rst @@ -1,3 +1,8 @@ +0.2.4 +===== +* Add support for ``_lookup`` methods as a fallback in RestController. +* A variety of improvements to project documentation. + 0.2.3 ===== * Add a variety of optimizations to ``pecan.core`` that improve request diff --git a/docs/source/conf.py b/docs/source/conf.py index ff740e9..c331fe3 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.3' +version = '0.2.4' # The full version, including alpha/beta/rc tags. -release = '0.2.3' +release = '0.2.4' # 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 758774c..9d1f5fc 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.3' +version = '0.2.4' # # determine requirements