Increment version to 1.3.0.

This commit is contained in:
Graham Dumpleton
2013-10-11 16:34:35 +11:00
parent 86d48bd9cc
commit a51defb733
3 changed files with 4 additions and 4 deletions

View File

@@ -48,9 +48,9 @@ copyright = u'2013, Graham Dumpleton'
# built documents.
#
# The short X.Y version.
version = '1.2'
version = '1.3'
# The full version, including alpha/beta/rc tags.
release = '1.2.0'
release = '1.3.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -34,7 +34,7 @@ class optional_build_ext(build_ext):
setup_kwargs = dict(
name = 'wrapt',
version = '1.2.0',
version = '1.3.0',
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', '3', '0')
__version__ = '.'.join(__version_info__)
from .wrappers import (ObjectProxy, FunctionWrapper, BoundFunctionWrapper,