From 0c3a2e8f4442e15b9c10b5a003dc999a8d2e41cc Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Fri, 20 Sep 2013 21:25:40 +1000 Subject: [PATCH] Increment version to 1.1.2. --- setup.py | 2 +- src/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8c9b6ce..be30910 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ class optional_build_ext(build_ext): setup_kwargs = dict( name = 'wrapt', - version = '1.1.1', + version = '1.1.2', 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 05f9209..43a02dd 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '1', '1') +__version_info__ = ('1', '1', '2') __version__ = '.'.join(__version_info__) from .wrappers import ObjectProxy, FunctionWrapper, WeakFunctionProxy