Increment version to 1.10.7.

This commit is contained in:
Graham Dumpleton
2016-03-31 16:36:09 +11:00
parent 5ce37e6dc4
commit 9e7787cc3e
3 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ copyright = u'2013-2015, Graham Dumpleton'
# The short X.Y version. # The short X.Y version.
version = '1.10' version = '1.10'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@@ -34,7 +34,7 @@ class optional_build_ext(build_ext):
setup_kwargs = dict( setup_kwargs = dict(
name = 'wrapt', name = 'wrapt',
version = '1.10.6', version = '1.10.7',
description = 'Module for decorators, wrappers and monkey patching.', description = 'Module for decorators, wrappers and monkey patching.',
long_description = open('README.rst').read(), long_description = open('README.rst').read(),
author = 'Graham Dumpleton', author = 'Graham Dumpleton',

View File

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