diff --git a/setup.py b/setup.py index be30910..8ce1000 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.2', + version = '1.1.3', 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 43a02dd..0bf8743 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '1', '2') +__version_info__ = ('1', '1', '3') __version__ = '.'.join(__version_info__) from .wrappers import ObjectProxy, FunctionWrapper, WeakFunctionProxy