Increment version to 1.10.11.

This commit is contained in:
Graham Dumpleton
2017-05-21 10:52:04 -07:00
parent 15860ff942
commit f2808c1ac4
3 changed files with 4 additions and 4 deletions

View File

@@ -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.

View File

@@ -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',

View File

@@ -1,4 +1,4 @@
__version_info__ = ('1', '10', '10')
__version_info__ = ('1', '10', '11')
__version__ = '.'.join(__version_info__)
from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,