From a51defb733e176d07fd19c58b91b316ea2184f1c Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Fri, 11 Oct 2013 16:34:35 +1100 Subject: [PATCH] Increment version to 1.3.0. --- docs/conf.py | 4 ++-- setup.py | 2 +- src/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index a32a84c..6907cf3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2013, Graham Dumpleton' # built documents. # # The short X.Y version. -version = '1.2' +version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.2.0' +release = '1.3.0' # 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 065b222..ae9702d 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ class optional_build_ext(build_ext): setup_kwargs = dict( name = 'wrapt', - version = '1.2.0', + version = '1.3.0', description = 'Module for decorators, wrappers and monkey patching.', author = 'Graham Dumpleton', author_email = 'Graham.Dumpleton@gmail.com', diff --git a/src/__init__.py b/src/__init__.py index e3fbc47..958bf4e 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '2', '0') +__version_info__ = ('1', '3', '0') __version__ = '.'.join(__version_info__) from .wrappers import (ObjectProxy, FunctionWrapper, BoundFunctionWrapper,