This commit is contained in:
Laurent Mazuel 2018-03-07 09:21:47 -08:00
Родитель 5df4c93ee7
Коммит 772ec4a272
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8A1A37C887DC49D8
4 изменённых файлов: 15 добавлений и 4 удалений

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

@ -20,6 +20,17 @@ To install:
Release History
---------------
2018-03-07 Version 0.4.27
+++++++++++++++++++++++++
**Features**
- Disable HTTP log by default (security), add `enable_http_log` to restore it #86
**BugFixes**
- Fix incorrect date parsing if ms precision is over 6 digits #82
2018-01-30 Version 0.4.26
+++++++++++++++++++++++++

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

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

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

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

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

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