diff --git a/Changelog.md b/Changelog.md index 429d68111..323944bb4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,8 +4,12 @@ [download latest version](https://markdownmonster.west-wind.com/download.aspx) • [install from Chocolatey](https://chocolatey.org/packages/MarkdownMonster) • [Web Site](https://markdownmonster.west-wind.com) -### 1.8.16 -*not released yet* +### 1.9 +*January 24, 2018* +#### Version Rollup Release + +* **Version Rollup Release** +This release is a version rollup release that combines all the recent additions into a point release. * **Add Table Editor support for Paste Table** You can now paste a table from HTML, or Pipe or Grid Tables into the table editor. Note if the table is heavily formatted it'll likely end up as mostly HTML, but simple formatted tables with links, images and simple markup are converted. diff --git a/Install/Chocolatey/build.ps1 b/Install/Chocolatey/build.ps1 index ca9801d1e..0b8fd40c2 100644 --- a/Install/Chocolatey/build.ps1 +++ b/Install/Chocolatey/build.ps1 @@ -6,7 +6,7 @@ cd "$PSScriptRoot" -$releasePath = "C:\projects2010\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.7" +$releasePath = "C:\projects2010\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.9" #$file = "MarkdownMonsterSetup-0.55.exe" $file = gci "$releasePath" | sort LastWriteTime | select -last 1 | select -ExpandProperty "Name" @@ -19,7 +19,7 @@ write-host $sha $filetext = @" `$packageName = 'markdownmonster' `$fileType = 'exe' -`$url = 'https://github.com/RickStrahl/MarkdownMonsterReleases/raw/master/v1.7/$file' +`$url = 'https://github.com/RickStrahl/MarkdownMonsterReleases/raw/master/v1.9/$file' `$silentArgs = '/VERYSILENT' `$validExitCodes = @(0) diff --git a/Install/Chocolatey/markdownmonster.nuspec b/Install/Chocolatey/markdownmonster.nuspec index 7e1bc9782..f46b8c341 100644 --- a/Install/Chocolatey/markdownmonster.nuspec +++ b/Install/Chocolatey/markdownmonster.nuspec @@ -2,7 +2,7 @@ MarkdownMonster - 1.8.15 + 1.9.0 Markdown Monster Rick Strahl, West Wind Technologies West Wind Technologies diff --git a/Install/Chocolatey/tools/chocolateyInstall.ps1 b/Install/Chocolatey/tools/chocolateyInstall.ps1 index 229cbbbca..2c2075176 100644 Binary files a/Install/Chocolatey/tools/chocolateyInstall.ps1 and b/Install/Chocolatey/tools/chocolateyInstall.ps1 differ diff --git a/Install/CreateRelease.ps1 b/Install/CreateRelease.ps1 index 09c979f0b..035586988 100644 --- a/Install/CreateRelease.ps1 +++ b/Install/CreateRelease.ps1 @@ -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.7\MarkdownMonsterSetup-${version}.exe" +$finalFile = "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.9\MarkdownMonsterSetup-${version}.exe" copy $releaseFile $finalFile copy $releaseFile "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\CurrentRelease\MarkdownMonsterSetup.exe" cd "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases" -git add -f "v1.7/MarkdownMonsterSetup-${version}.exe" +git add -f "v1.9/MarkdownMonsterSetup-${version}.exe" git commit -m "$version" git push origin master