Increment version to 1.1.2.

This commit is contained in:
Graham Dumpleton
2013-09-20 21:25:40 +10:00
parent 032c7c6b42
commit 0c3a2e8f44
2 changed files with 2 additions and 2 deletions

View File

@@ -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',

View File

@@ -1,4 +1,4 @@
__version_info__ = ('1', '1', '1')
__version_info__ = ('1', '1', '2')
__version__ = '.'.join(__version_info__)
from .wrappers import ObjectProxy, FunctionWrapper, WeakFunctionProxy