diff --git a/README.rst b/README.rst index 6877e2e83c..5e0fa4e742 100644 --- a/README.rst +++ b/README.rst @@ -20,6 +20,15 @@ To install: Release History --------------- +2020-05-18 Version 0.6.14 ++++++++++++++++++++++++++ + +**Bugfixes** + +- Fix "from_dict" in some complex flattening scenario #204 +- Fix RFC date parsing if machine locale is not English #201 + + 2020-04-07 Version 0.6.13 +++++++++++++++++++++++++ diff --git a/msrest/version.py b/msrest/version.py index 782302fdfc..6cdcd165b7 100644 --- a/msrest/version.py +++ b/msrest/version.py @@ -25,4 +25,4 @@ # -------------------------------------------------------------------------- #: version of this package. Use msrest.__version__ instead -msrest_version = "0.6.13" +msrest_version = "0.6.14" diff --git a/setup.py b/setup.py index 81944ac6fb..5e9e972db4 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( name='msrest', - version='0.6.13', + version='0.6.14', author='Microsoft Corporation', packages=find_packages(exclude=["tests", "tests.*"]), url=("https://github.com/Azure/msrest-for-python"),