diff --git a/ChangeLog.txt b/ChangeLog.txt index ee63b64691f2..ae0da2c805f3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +2015-04-28 Version 0.10.2 + * Fixes for bugs: + #338 Version 0.10.0 fails with 'SocketReader' object has no attribute 'tell' + 2015-03-13 Version 0.10.0 IMPORTANT CHANGE THAT AFFECTS STORAGE USERS (BLOB, QUEUE, TABLE): diff --git a/azure/__init__.py b/azure/__init__.py index 418c59490216..87c77ff1b2fc 100644 --- a/azure/__init__.py +++ b/azure/__init__.py @@ -43,7 +43,7 @@ # constants __author__ = 'Microsoft Corp. ' -__version__ = '0.10.0' +__version__ = '0.10.2' # Live ServiceClient URLs BLOB_SERVICE_HOST_BASE = '.blob.core.windows.net' diff --git a/doc/conf.py b/doc/conf.py index 845dc19323fd..7083d037e327 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.10.0' +version = '0.10.2' # The full version, including alpha/beta/rc tags. -release = '0.10.0' +release = '0.10.2' # 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 c32491052bba..8f3d2e194486 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ # python setup.py sdist upload setup(name='azure', - version='0.10.0', + version='0.10.2', description='Microsoft Azure client APIs', long_description=open('README.rst', 'r').read(), license='Apache License 2.0',