Increment version to 1.1.3.

This commit is contained in:
Graham Dumpleton
2013-09-21 21:13:55 +10:00
parent d1036fe0de
commit db897007db
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.2',
version = '1.1.3',
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', '2')
__version_info__ = ('1', '1', '3')
__version__ = '.'.join(__version_info__)
from .wrappers import ObjectProxy, FunctionWrapper, WeakFunctionProxy