Skip to content

Commit

Permalink
v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RickStrahl committed Oct 19, 2017
1 parent ffa0ac9 commit c8d0a9d
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion AddIns/ScreenCaptureAddin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// 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.6.8")]
[assembly: AssemblyVersion("1.7.0")]
2 changes: 1 addition & 1 deletion AddIns/WebLogAddin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.6.8")]
[assembly: AssemblyVersion("1.7.0")]
Binary file modified Install/Builds/CurrentRelease/MarkdownMonster_Version.xml
Binary file not shown.
6 changes: 3 additions & 3 deletions Install/Chocolatey.Portable/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# Release has been checked in to GitHub Repo
# Builds: ChocolateyInstall.ps1 file with download URL and sha256 embedded

cd "$PSScriptRoot"
Set-Location "$PSScriptRoot"

copy ..\builds\currentrelease\MarkdownMonsterPortable.zip .\tools
Copy-Item ..\builds\currentrelease\MarkdownMonsterPortable.zip .\tools

$sha = get-filehash -path ".\tools\MarkdownMonsterPortable.zip" -Algorithm SHA256 | select -ExpandProperty "Hash"
write-host $sha
Expand All @@ -19,7 +19,7 @@ $filetext = @"
out-file -filepath .\tools\Verification.txt -inputobject $filetext


del *.nupkg
Remove-Item *.nupkg

# Create .nupkg from .nuspec
choco pack
Expand Down
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>MarkdownMonster.Portable</id>
<version>1.6.0</version>
<version>1.7.0</version>
<title>Markdown Monster Portable Install</title>
<authors>Rick Strahl, West Wind Technologies</authors>
<owners>West Wind Technologies</owners>
Expand Down
4 changes: 2 additions & 2 deletions Install/Chocolatey/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

cd "$PSScriptRoot"

$releasePath = "C:\projects2010\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.6"
$releasePath = "C:\projects2010\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.7"

#$file = "MarkdownMonsterSetup-0.55.exe"
$file = gci "$releasePath" | sort LastWriteTime | select -last 1 | select -ExpandProperty "Name"
Expand All @@ -19,7 +19,7 @@ write-host $sha
$filetext = @"
`$packageName = 'markdownmonster'
`$fileType = 'exe'
`$url = 'https://github.com/RickStrahl/MarkdownMonsterReleases/raw/master/v1.6/$file'
`$url = 'https://github.com/RickStrahl/MarkdownMonsterReleases/raw/master/v1.7/$file'
`$silentArgs = '/VERYSILENT'
`$validExitCodes = @(0)
Expand Down
2 changes: 1 addition & 1 deletion Install/Chocolatey/markdownmonster.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>MarkdownMonster</id>
<version>1.6.8</version>
<version>1.7.0</version>
<title>Markdown Monster</title>
<authors>Rick Strahl, West Wind Technologies</authors>
<owners>West Wind Technologies</owners>
Expand Down
Binary file modified Install/Chocolatey/tools/chocolateyInstall.ps1
Binary file not shown.
4 changes: 2 additions & 2 deletions Install/CreateRelease.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ $version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($releaseFile).Fi
$version = $version.Trim().Replace(".0","")
"Writing Version File for: " + $version

$finalFile = "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.6\MarkdownMonsterSetup-${version}.exe"
$finalFile = "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.7\MarkdownMonsterSetup-${version}.exe"
copy $releaseFile $finalFile
copy $releaseFile "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\CurrentRelease\MarkdownMonsterSetup.exe"
cd "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases"

git add -f "v1.6/MarkdownMonsterSetup-${version}.exe"
git add -f "v1.7/MarkdownMonsterSetup-${version}.exe"
git commit -m "$version"
git push origin master

Expand Down
2 changes: 1 addition & 1 deletion MarkdownMonster/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@
// 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.6.8")]
[assembly: AssemblyVersion("1.7.0")]

0 comments on commit c8d0a9d

Please sign in to comment.