Skip to content

Commit

Permalink
Remove release notes file functionality. (#11)
Browse files Browse the repository at this point in the history
* Add ConvertFrom-Iterm2ColorScheme and update Import to use it.
* Add argument completers for ColorScheme and Profile names.
* Add support for removing profile settings by passing empty string.
* Standardize on ConfirmImpact="high" for remove commands.
  • Loading branch information
gpduck authored May 25, 2019
1 parent a7376ce commit f13ec36
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions Module.Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -378,11 +378,6 @@ Task Publish -If ($NuGetApiKey) Build, Test, BuildHelp, GenerateFileCatalog, {
$publishParams['Repository'] = $PublishRepository
}

# Consider not using -ReleaseNotes parameter when Update-ModuleManifest has been fixed.
if ($ReleaseNotesPath) {
$publishParams['ReleaseNotes'] = @(Get-Content $ReleaseNotesPath)
}

"Calling Publish-Module..."
Publish-Module @publishParams
}
Expand Down
5 changes: 0 additions & 5 deletions Module.BuildSettings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,6 @@ $NuGetApiKey = $env:PowershellGalleryKey
[System.Diagnostics.CodeAnalysis.SuppressMessage('PSUseDeclaredVarsMoreThanAssigments', '')]
$PublishRepository = "PSGallery"

# Path to the release notes file. Set to $null if the release notes reside in the manifest file.
# The contents of this file are used during publishing for the ReleaseNotes parameter.
[System.Diagnostics.CodeAnalysis.SuppressMessage('PSUseDeclaredVarsMoreThanAssigments', '')]
$ReleaseNotesPath = 'ReleaseNotes.txt'

# ----------------------- Misc properties ---------------------------------

# In addition, PFX certificates are supported in an interactive scenario only,
Expand Down

0 comments on commit f13ec36

Please sign in to comment.