This commit is contained in:
Laurent Mazuel 2019-09-04 09:45:02 -07:00
Родитель 58189176f9
Коммит b505e3627b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8A1A37C887DC49D8
3 изменённых файлов: 18 добавлений и 3 удалений

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

@ -20,7 +20,22 @@ To install:
Release History
---------------
2019-07-24 Versopm 0.6.9
2019-09-04 Version 0.6.10
+++++++++++++++++++++++++
**Features**
- XML mode now supports OpenAPI additional properties # 174
**Bugfixes**
- Accept "is_xml" kwargs to force XML serialization #178
- Disable XML deserialization if received element is not an ElementTree #178
- A "null" enum deserialize as None, and not "None" anymore #173
- Fix some UTF8 encoding issue in Python 2.7 and XML mode #172
2019-07-24 Version 0.6.9
++++++++++++++++++++++++
**Features**

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

@ -25,4 +25,4 @@
# --------------------------------------------------------------------------
#: version of this package. Use msrest.__version__ instead
msrest_version = "0.6.9"
msrest_version = "0.6.10"

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

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