From f2808c1ac4b442359ce518e7d619e66222f7da7e Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Sun, 21 May 2017 10:52:04 -0700 Subject: [PATCH] Increment version to 1.10.11. --- docs/conf.py | 4 ++-- setup.py | 2 +- src/wrapt/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index dcd6051..5778260 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'wrapt' -copyright = u'2013-2016, Graham Dumpleton' +copyright = u'2013-2017, Graham Dumpleton' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -50,7 +50,7 @@ copyright = u'2013-2016, Graham Dumpleton' # The short X.Y version. version = '1.10' # The full version, including alpha/beta/rc tags. -release = '1.10.10' +release = '1.10.11' # 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 b8ce429..8b459c0 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ classifiers = [ setup_kwargs = dict( name='wrapt', - version='1.10.10', + version='1.10.11', 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 4ce674b..182a1e1 100644 --- a/src/wrapt/__init__.py +++ b/src/wrapt/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '10', '10') +__version_info__ = ('1', '10', '11') __version__ = '.'.join(__version_info__) from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,