diff --git a/docs/changes.rst b/docs/changes.rst index a734fe8..5271a61 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,13 @@ Release Notes ============= +Version 1.10.4 +-------------- + +**Bugs Fixed** + +* Fixup botched package version number from 1.10.3 release. + Version 1.10.3 -------------- diff --git a/docs/conf.py b/docs/conf.py index 3889807..6fca287 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ copyright = u'2013-2014, Graham Dumpleton' # The short X.Y version. version = '1.10' # The full version, including alpha/beta/rc tags. -release = '1.10.3' +release = '1.10.4' # 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 ee3448e..acb36d7 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.2', + version = '1.10.4', description = 'Module for decorators, wrappers and monkey patching.', author = 'Graham Dumpleton', author_email = 'Graham.Dumpleton@gmail.com', diff --git a/src/__init__.py b/src/__init__.py index b759869..1a989ac 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '10', '3') +__version_info__ = ('1', '10', '4') __version__ = '.'.join(__version_info__) from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper,