This commit is contained in:
Laurent Mazuel 2017-04-04 11:36:16 -07:00
Родитель cd2cc163a5
Коммит 6042cbdce3
4 изменённых файлов: 20 добавлений и 5 удалений

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

@ -20,6 +20,21 @@ To install:
Release History
---------------
2017-04-04 Version 0.4.7
++++++++++++++++++++++++
**BugFixes**
- Refactor paging #22:
- "next" is renamed "advance_page" and "next" returns only 1 element (Python 2 expected behavior)
- paging objects are now real generator and support the "next()" built-in function without need for "iter()"
- Raise accurate DeserialisationError on incorrect RestAPI discriminator usage #27
- Fix discriminator usage of the base class name #27
- Remove default mutable arguments in Clients #20
- Fix object comparison in some scenarios #24
2017-03-06 Version 0.4.6
++++++++++++++++++++++++

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

@ -34,7 +34,7 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.doctes
'sphinx.ext.viewcode', 'sphinx.ext.intersphinx']
intersphinx_mapping = {
'python': ('https://docs.python.org/3.5', None),
'python': ('https://docs.python.org/3.6', None),
}
# Add any paths that contain templates here, relative to this directory.
@ -58,9 +58,9 @@ copyright = u'2016-2017, Microsoft'
# built documents.
#
# The short X.Y version.
version = '0.4.6'
version = '0.4.7'
# The full version, including alpha/beta/rc tags.
release = '0.4.6'
release = '0.4.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

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

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

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

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