diff --git a/ChangeVersion.ps1 b/ChangeVersion.ps1
index 0851a06..29205e9 100644
--- a/ChangeVersion.ps1
+++ b/ChangeVersion.ps1
@@ -1,4 +1,4 @@
-[CmdletBinding()]
+[CmdletBinding()]
Param(
[String][Parameter(Mandatory=$True)]$Version
)
@@ -21,5 +21,7 @@ Function AssignVersionToFile {
AssignVersionToFile -Path "$PSScriptRoot\GoToWindow.nuspec" -RegEx "[^<]+" -Replacement "$($Version)"
AssignVersionToFile -Path "$PSScriptRoot\GoToWindow.Shared\Properties\AssemblyInfo.Shared.cs" -RegEx "`"(\d+\.\d+\.\d+)`"" -Replacement "`"$($Version)`""
+AssignVersionToFile -Path "$PSScriptRoot\chocolatey\gotowindow.nuspec" -RegEx "[^<]+"-Replacement "$($Version)"
+AssignVersionToFile -Path "$PSScriptRoot\chocolatey\tools\chocolateyinstall.ps1" -RegEx "(\d+\.\d+\.\d+)" -Replacement "$($Version)"
Write-Host "Version updated!" -ForegroundColor Green
diff --git a/GoToWindow.Shared/Properties/AssemblyInfo.Shared.cs b/GoToWindow.Shared/Properties/AssemblyInfo.Shared.cs
index 6a97c48..0c66dda 100644
--- a/GoToWindow.Shared/Properties/AssemblyInfo.Shared.cs
+++ b/GoToWindow.Shared/Properties/AssemblyInfo.Shared.cs
@@ -7,6 +7,6 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
-[assembly: AssemblyVersion("0.7.1")]
-[assembly: AssemblyFileVersion("0.7.1")]
-[assembly: AssemblyInformationalVersion("0.7.1")]
+[assembly: AssemblyVersion("0.7.2")]
+[assembly: AssemblyFileVersion("0.7.2")]
+[assembly: AssemblyInformationalVersion("0.7.2")]
diff --git a/GoToWindow.nuspec b/GoToWindow.nuspec
index 5e39a01..cab684c 100644
--- a/GoToWindow.nuspec
+++ b/GoToWindow.nuspec
@@ -2,7 +2,7 @@
GoToWindow
- 0.7.1
+ 0.7.2
GoToWindow
Christian Rondeau
Christian Rondeau
diff --git a/chocolatey/gotowindow.nuspec b/chocolatey/gotowindow.nuspec
index 8d4ae61..b33b049 100644
--- a/chocolatey/gotowindow.nuspec
+++ b/chocolatey/gotowindow.nuspec
@@ -2,7 +2,7 @@
gotowindow
- 0.7.1
+ 0.7.2
https://github.com/christianrondeau/GoToWindow/Chocolatey
Christian Rondeau
GoToWindow (Install)
diff --git a/chocolatey/tools/chocolateyinstall.ps1 b/chocolatey/tools/chocolateyinstall.ps1
index 2617b67..f4cf42c 100644
--- a/chocolatey/tools/chocolateyinstall.ps1
+++ b/chocolatey/tools/chocolateyinstall.ps1
@@ -1,7 +1,7 @@
$packageArgs = @{
packageName = 'GoToWindow'
installerType = 'exe'
- url = 'https://github.com/christianrondeau/GoToWindow/releases/download/v0.7.1/GoToWindow.Setup.0.7.1.exe'
+ url = 'https://github.com/christianrondeau/GoToWindow/releases/download/v0.7.2/GoToWindow.Setup.0.7.2.exe'
checksumType = 'sha256'
checksum = '1AC20D3225DA6135FFAA943E7A7F0D8F95923DDF3E7B019EE0E09CD77CE49A78'
silentArgs = '--silent'