Skip to content

Commit 9d00cd7

Browse files
authored
Merge pull request #4005 from markcowl/rel402
Add EnvironmentName parameter alias and update versions and changelog…
2 parents 78ed8fd + f6a7985 commit 9d00cd7

File tree

246 files changed

+635
-822
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

246 files changed

+635
-822
lines changed

ChangeLog.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## 2017.05.12 - Version 4.0.1
1+
## 2017.05.23 - Version 4.0.2
2+
* Profile
3+
* Add-AzureRmAccount
4+
* Added `-EnvironmentName` parameter alis for backward compatibility with 2.x versions of AzureRM.profile
5+
6+
## 2017.05.12 - Version 4.0.1
27
* Fix issue with New-AzureStorageContext in offline scenarios: https://github.com/Azure/azure-powershell/issues/3939
38

49
## 2017.05.10 - Version 4.0.0
@@ -3214,4 +3219,4 @@ Virtual Network cmdlets
32143219
* iisnode 0.1.13
32153220

32163221
2011.12.09 Version 0.5.0
3217-
* Initial Release
3222+
* Initial Release

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ Be sure to check out the [Microsoft Azure Developer Forums on Stack Overflow](ht
196196

197197
If you would like to become an active contributor to this project please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](https://azure.github.io/guidelines/).
198198

199+
More information about contributing to this repo can be found in [CONTRIBUTING md](https://github.com/Azure/azure-powershell/blob/preview/CONTRIBUTING.md) and the [Documentation](https://github.com/Azure/azure-powershell/tree/preview/documentation) folder.
200+
199201
If you encounter any bugs with the library please file an issue in the [Issues](https://github.com/Azure/azure-powershell/issues) section of the project.
200202

201203
# Learn More

setup/azurecmd.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

8-
<?define version="4.0.1" ?>
8+
<?define version="4.0.2" ?>
99

1010
<Product Id="*"
1111
Name="$(var.productName)"

src/Common/Commands.Common/AzurePSCmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ protected string PSVersion
9898
/// <summary>
9999
/// Gets PowerShell module version used for user agent header.
100100
/// </summary>
101-
protected string ModuleVersion { get { return Assembly.GetCallingAssembly().GetName().Version.ToString(); } }
101+
protected string ModuleVersion { get { return AzurePowerShell.AssemblyVersion; } }
102102

103103
/// <summary>
104104
/// The context for management cmdlet requests - includes account, tenant, subscription,

src/Common/Commands.Common/AzurePowerShell.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ public class AzurePowerShell
2626

2727
public const string AssemblyCopyright = "Copyright © Microsoft";
2828

29-
public const string AssemblyVersion = "4.0.0";
29+
public const string AssemblyVersion = "4.0.2";
3030

31-
public const string AssemblyFileVersion = "4.0.0";
31+
public const string AssemblyFileVersion = "4.0.2";
3232

3333
public const string ProfileFile = "AzureProfile.json";
3434

src/ResourceManager/AnalysisServices/AzureRM.AnalysisServices.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 5/5/2017
6+
# Generated on: 5/21/2017
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.3.0'
15+
ModuleVersion = '0.3.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.0.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '3.0.1'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
# RequiredAssemblies = @()

src/ResourceManager/AnalysisServices/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
-->
2020
## Current Release
2121

22+
## Version 0.3.1
23+
2224
## Version 0.3.0
2325

2426
## Version 0.2.0

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Azure.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '0.3.0'
12+
ModuleVersion = '0.3.1'
1313

1414
# ID used to uniquely identify this module
1515
GUID = 'c717b5a4-1f1b-4a2f-8aa1-bfd09934626e'

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// by using the '*' as shown below:
3636

3737

38-
[assembly: AssemblyVersion("0.3.0")]
39-
[assembly: AssemblyFileVersion("0.3.0")]
38+
[assembly: AssemblyVersion("0.3.1")]
39+
[assembly: AssemblyFileVersion("0.3.1")]

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232

3333
[assembly: Guid("37af97fd-d603-4d52-a7a6-0885004a57fe")]
3434

35-
[assembly: AssemblyVersion("0.3.0")]
36-
[assembly: AssemblyFileVersion("0.3.0")]
35+
[assembly: AssemblyVersion("0.3.1")]
36+
[assembly: AssemblyFileVersion("0.3.1")]
3737
[assembly: CollectionBehavior(DisableTestParallelization = true)]

0 commit comments

Comments
 (0)