Skip to content

Commit

Permalink
1.0.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
quoctruong committed Dec 12, 2017
1 parent 19c43be commit de5c410
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Google.PowerShell/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1.1")]
[assembly: AssemblyFileVersion("1.0.1.1")]
[assembly: AssemblyVersion("1.0.1.2")]
[assembly: AssemblyFileVersion("1.0.1.2")]
4 changes: 2 additions & 2 deletions Google.PowerShell/ReleaseFiles/GoogleCloud.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Google Inc
#
# Generated on: 11/29/2017
# Generated on: 12/11/2017
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'GoogleCloud.psm1'

# Version number of this module.
ModuleVersion = '1.0.1.1'
ModuleVersion = '1.0.1.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
10 changes: 5 additions & 5 deletions Tools/BuildAndPackage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ $googlePowerShellAssemblyPath = Resolve-Path (Join-Path $configDir Google.PowerS
$getCmdletsScriptBlock = {
param($modulePath)
Import-Module $modulePath | Out-Null
(Get-Module GoogleCloud).ExportedCmdlets.Keys
(Get-Module Google.PowerShell).ExportedCmdlets.Keys
}
$job = Start-Job -ScriptBlock $getCmdletsScriptBlock -ArgumentList $googlePowerShellAssemblyPath
$cmdletsList = $job | Wait-Job | Receive-Job
Expand Down Expand Up @@ -206,22 +206,22 @@ if ($configuration -eq "Debug")
{
Copy-Item -Recurse "$configDir\*" $googleCloudDir -Include $powerShellScriptFiles
Copy-Item -Recurse "$configDir\*" $googleCloudFullClrDir -Exclude $powerShellScriptFiles
Copy-Item -Recurse "$coreClrConfigDir\Google.*" $googleCloudCoreClrDir -Exclude $powerShellScriptFiles
Copy-Item -Recurse "$coreClrConfigDir\*" $googleCloudCoreClrDir -Exclude $powerShellScriptFiles

Copy-Item -Recurse "$configDir\*" $googleCloudBetaDir -Include $powerShellScriptFiles
Copy-Item -Recurse "$configDir\*" $googleCloudFullClrBetaDir -Exclude $powerShellScriptFiles
Copy-Item -Recurse "$coreClrConfigDir\Google.*" $googleCloudCoreClrBetaDir -Exclude $powerShellScriptFiles
Copy-Item -Recurse "$coreClrConfigDir\*" $googleCloudCoreClrBetaDir -Exclude $powerShellScriptFiles
}
else
{
$fileToExclude = $powerShellScriptFiles + "*.pdb"
Copy-Item -Recurse "$configDir\*" $googleCloudDir -Include $powerShellScriptFiles
Copy-Item -Recurse "$configDir\*" $googleCloudFullClrDir -Exclude $fileToExclude
Copy-Item -Recurse "$coreClrConfigDir\Google.*" $googleCloudCoreClrDir -Exclude $fileToExclude
Copy-Item -Recurse "$coreClrConfigDir\*" $googleCloudCoreClrDir -Exclude $fileToExclude

Copy-Item -Recurse "$configDir\*" $googleCloudBetaDir -Include $powerShellScriptFiles
Copy-Item -Recurse "$configDir\*" $googleCloudFullClrBetaDir -Exclude $fileToExclude
Copy-Item -Recurse "$coreClrConfigDir\Google.*" $googleCloudCoreClrBetaDir -Exclude $fileToExclude
Copy-Item -Recurse "$coreClrConfigDir\*" $googleCloudCoreClrBetaDir -Exclude $fileToExclude
}

# For the beta module, edit and rename the module manifest file.
Expand Down
2 changes: 1 addition & 1 deletion website
Submodule website updated 1 files
+1 −1 data/cmdletsFull.json

0 comments on commit de5c410

Please sign in to comment.