Skip to content

Commit

Permalink
Bump to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrondeau committed Jun 7, 2017
1 parent 4a67e57 commit e26589f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion ChangeVersion.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[CmdletBinding()]
[CmdletBinding()]
Param(
[String][Parameter(Mandatory=$True)]$Version
)
Expand All @@ -21,5 +21,7 @@ Function AssignVersionToFile {

AssignVersionToFile -Path "$PSScriptRoot\GoToWindow.nuspec" -RegEx "<version>[^<]+</version>" -Replacement "<version>$($Version)</version>"
AssignVersionToFile -Path "$PSScriptRoot\GoToWindow.Shared\Properties\AssemblyInfo.Shared.cs" -RegEx "`"(\d+\.\d+\.\d+)`"" -Replacement "`"$($Version)`""
AssignVersionToFile -Path "$PSScriptRoot\chocolatey\gotowindow.nuspec" -RegEx "<version>[^<]+</version>"-Replacement "<version>$($Version)</version>"
AssignVersionToFile -Path "$PSScriptRoot\chocolatey\tools\chocolateyinstall.ps1" -RegEx "(\d+\.\d+\.\d+)" -Replacement "$($Version)"

Write-Host "Version updated!" -ForegroundColor Green
6 changes: 3 additions & 3 deletions GoToWindow.Shared/Properties/AssemblyInfo.Shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
2 changes: 1 addition & 1 deletion GoToWindow.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>GoToWindow</id>
<version>0.7.1</version>
<version>0.7.2</version>
<title>GoToWindow</title>
<authors>Christian Rondeau</authors>
<owners>Christian Rondeau</owners>
Expand Down
2 changes: 1 addition & 1 deletion chocolatey/gotowindow.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>gotowindow</id>
<version>0.7.1</version>
<version>0.7.2</version>
<packageSourceUrl>https://github.com/christianrondeau/GoToWindow/Chocolatey</packageSourceUrl>
<owners>Christian Rondeau</owners>
<title>GoToWindow (Install)</title>
Expand Down
2 changes: 1 addition & 1 deletion chocolatey/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit e26589f

Please sign in to comment.