From 9e7787cc3eda1d03da1d8660a66a3baba9ffbeab Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Thu, 31 Mar 2016 16:36:09 +1100 Subject: [PATCH] Increment version to 1.10.7. --- docs/conf.py | 2 +- setup.py | 2 +- src/wrapt/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 766e430..ae1c505 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ copyright = u'2013-2015, Graham Dumpleton' # The short X.Y version. version = '1.10' # The full version, including alpha/beta/rc tags. -release = '1.10.6' +release = '1.10.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index db006fe..ab65459 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ class optional_build_ext(build_ext): setup_kwargs = dict( name = 'wrapt', - version = '1.10.6', + version = '1.10.7', description = 'Module for decorators, wrappers and monkey patching.', long_description = open('README.rst').read(), author = 'Graham Dumpleton', diff --git a/src/wrapt/__init__.py b/src/wrapt/__init__.py index 5d316b8..a159461 100644 --- a/src/wrapt/__init__.py +++ b/src/wrapt/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '10', '6') +__version_info__ = ('1', '10', '7') __version__ = '.'.join(__version_info__) from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,