Revert versions to 1.1.1 for a bug fix only release.

This commit is contained in:
Graham Dumpleton
2013-09-19 22:26:27 +10:00
parent 3b432c8132
commit 5ba10d5775
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
Changes
=======
Version 1.2.0
Version 1.1.1
-------------
**Bugs Fixed**

View File

@@ -34,7 +34,7 @@ class optional_build_ext(build_ext):
setup_kwargs = dict(
name = 'wrapt',
version = '1.1.0',
version = '1.1.1',
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', '2', '0')
__version_info__ = ('1', '1', '1')
__version__ = '.'.join(__version_info__)
from .wrappers import ObjectProxy, FunctionWrapper, WeakFunctionProxy