This commit is contained in:
Laurent Mazuel 2018-01-03 14:37:05 -08:00
Родитель 952b50717d
Коммит f8adf170d3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8A1A37C887DC49D8
4 изменённых файлов: 17 добавлений и 4 удалений

Просмотреть файл

@ -20,6 +20,19 @@ To install:
Release History
---------------
2018-01-03 Version 0.4.24
+++++++++++++++++++++++++
**Bugfixes**
- Date parsing is not compliant with Autorest / Swagger 2.0 specification (less lenient)
**Internal optimisation**
- Call that does not return a streamable object are now executed in requests stream mode False (was True whatever the type of the call).
This should reduce the number of leaked opened session and allow urllib3 to manage connection pooling more efficiently.
Only clients generated with Autorest.Python >= 2.1.31 (not impacted otherwise, fully backward compatible)
2017-12-21 Version 0.4.23
+++++++++++++++++++++++++

Просмотреть файл

@ -58,9 +58,9 @@ copyright = u'2016-2017, Microsoft'
# built documents.
#
# The short X.Y version.
version = '0.4.23'
version = '0.4.24'
# The full version, including alpha/beta/rc tags.
release = '0.4.23'
release = '0.4.24'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

Просмотреть файл

@ -25,4 +25,4 @@
# --------------------------------------------------------------------------
msrest_version = "0.4.23"
msrest_version = "0.4.24"

Просмотреть файл

@ -28,7 +28,7 @@ from setuptools import setup
setup(
name='msrest',
version='0.4.23',
version='0.4.24',
author='Microsoft Corporation',
packages=['msrest'],
url=("https://github.com/Azure/msrest-for-python"),