This commit is contained in:
Laurent Mazuel 2017-03-06 12:25:04 -08:00
Родитель 1eba0d4b73
Коммит 5c782163ef
4 изменённых файлов: 12 добавлений и 5 удалений

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

@ -20,6 +20,13 @@ To install:
Release History
---------------
2017-03-06 Version 0.4.6
++++++++++++++++++++++++
**Bugfixes**
- Allow Model sub-classes to be serialized if type is "object"
2017-02-13 Version 0.4.5
++++++++++++++++++++++++

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

@ -51,16 +51,16 @@ master_doc = 'index'
# General information about the project.
project = u'msrest'
copyright = u'2016, Microsoft'
copyright = u'2016-2017, Microsoft'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.4.4'
version = '0.4.6'
# The full version, including alpha/beta/rc tags.
release = '0.4.4'
release = '0.4.6'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

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

@ -25,4 +25,4 @@
# --------------------------------------------------------------------------
msrest_version = "0.4.5"
msrest_version = "0.4.6"

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

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