Skip to content

Commit

Permalink
msrest/msrestazure 0.3.0 (Azure#982)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel authored and amarzavery committed Apr 30, 2016
1 parent 78ce979 commit 1f4cc35
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Microsoft.Rest.Generator.Azure.Python
{
public class AzurePythonCodeGenerator : PythonCodeGenerator
{
private const string ClientRuntimePackage = "msrestazure version 0.2.1";
private const string ClientRuntimePackage = "msrestazure version 0.3.0";

// page extensions class dictionary.
private IList<PageTemplateModel> pageModels;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public override string SetupRequires
{
get
{
return "\"msrest>=0.2.0\", \"msrestazure>=0.2.1\"";
return "\"msrest>=0.3.0\", \"msrestazure>=0.3.0\"";
}
}

Expand Down
2 changes: 1 addition & 1 deletion AutoRest/Generators/Python/Python/PythonCodeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Microsoft.Rest.Generator.Python
{
public class PythonCodeGenerator : CodeGenerator
{
private const string ClientRuntimePackage = "msrest version 0.2.0";
private const string ClientRuntimePackage = "msrest version 0.3.0";

public PythonCodeGenerator(Settings settings) : base(settings)
{
Expand Down
4 changes: 2 additions & 2 deletions ClientRuntimes/Python/msrest/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = '0.2.0'
version = '0.3.0'
# The full version, including alpha/beta/rc tags.
release = '0.2.0'
release = '0.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion ClientRuntimes/Python/msrest/msrest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
# --------------------------------------------------------------------------


msrest_version = "0.2.0"
msrest_version = "0.3.0"
15 changes: 14 additions & 1 deletion ClientRuntimes/Python/msrest/readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ To install:
Release History
---------------

2016-04-26 Version 0.3.0
++++++++++++++++++++++++

**Bugfixes**

- Read only values are no longer in __init__ or sent to the server (https://github.com/Azure/autorest/pull/959)
- Useless kwarg removed

**Behaviour changes**

- Needs Autorest > 0.16.0 Nightly 20160426


2016-03-25 Version 0.2.0
++++++++++++++++++++++++

Expand All @@ -23,7 +36,7 @@ Release History
- Manage integer enum values (https://github.com/Azure/autorest/pull/879)
- Add missing application/json Accept HTTP header (https://github.com/Azure/azure-sdk-for-python/issues/553)

**Beheviour changes**
**Behaviour changes**

- Needs Autorest > 0.16.0 Nightly 20160324

Expand Down
2 changes: 1 addition & 1 deletion ClientRuntimes/Python/msrest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

setup(
name='msrest',
version='0.2.0',
version='0.3.0',
author='Microsoft Corporation',
packages=['msrest'],
url=("https://github.com/xingwu1/autorest/tree/python/"
Expand Down
4 changes: 2 additions & 2 deletions ClientRuntimes/Python/msrestazure/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '0.2.1'
version = '0.3.0'
# The full version, including alpha/beta/rc tags.
release = '0.2.1'
release = '0.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion ClientRuntimes/Python/msrestazure/msrestazure/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
#
# --------------------------------------------------------------------------

msrestazure_version = "0.2.1"
msrestazure_version = "0.3.0"
15 changes: 15 additions & 0 deletions ClientRuntimes/Python/msrestazure/readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,21 @@ To install:
Release History
---------------

2016-04-26 Version 0.3.0
++++++++++++++++++++++++

Update msrest dependency to 0.3.0

**Bugfixes**

- Read only values are no longer in __init__ or sent to the server (https://github.com/Azure/autorest/pull/959)
- Useless kwarg removed

**Behaviour changes**

- Needs Autorest > 0.16.0 Nightly 20160426


2016-03-31 Version 0.2.1
++++++++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions ClientRuntimes/Python/msrestazure/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

setup(
name='msrestazure',
version='0.2.1',
version='0.3.0',
author='Microsoft Corporation',
packages=['msrestazure'],
url=('https://github.com/xingwu1/autorest/tree/python/'
Expand All @@ -49,5 +49,5 @@
'License :: OSI Approved :: MIT License',
'Topic :: Software Development'],
install_requires=[
"msrest>=0.2.0"],
"msrest>=0.3.0"],
)

0 comments on commit 1f4cc35

Please sign in to comment.