diff --git a/CHANGELOG.md b/CHANGELOG.md index 525af23..0a83721 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +**v1.5** *20160420* +- GH-17 thanks to @Wav3 +- Removed from the manifest the `PowerShellHostVersion` because it created some issues with *in-remoting* like sessions. + **20160420** - Within `New-MDImage` `[System.Uri]::EscapeDataString` is not escaping `(`,`)` when not executing from withing ise. Don't know why. Fixed with extra replacements. diff --git a/Publish/PreparePSD1.ps1 b/Publish/PreparePSD1.ps1 index 3dc1261..c398734 100644 --- a/Publish/PreparePSD1.ps1 +++ b/Publish/PreparePSD1.ps1 @@ -37,7 +37,6 @@ foreach($module in $modules) "ReleaseNotes"= 'https://github.com/Sarafian/MarkdownPS/blob/master/CHANGELOG.md'; "CmdletsToExport" = $exportedNames; "FunctionsToExport" = $exportedNames; - "PowerShellHostVersion"="4.0" } New-ModuleManifest @hash diff --git a/Publish/Version.ps1 b/Publish/Version.ps1 index e125749..1757ba2 100644 --- a/Publish/Version.ps1 +++ b/Publish/Version.ps1 @@ -1,6 +1,6 @@ function Get-Version { $major=1 - $minor=4 + $minor=5 $patch=0 return "$major.$minor"