From 2b26ee268008e441d5000beeeddaa25f13cdaf00 Mon Sep 17 00:00:00 2001 From: Keith Dahlby Date: Wed, 10 Mar 2021 23:07:13 -0600 Subject: [PATCH] Release v1.0.0 --- README.md | 14 ++++++++++---- chocolatey/poshgit.nuspec | 6 +++--- src/posh-git.psd1 | 9 +++------ 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 51697bb25..5220010b9 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ branch names e.g.: `git pull or ma` tab completes to `git pull origin |--------------------|----------------------|----------------------| | [![master build status][av-master-img]][av-master-site] | [![master build status][tv-master-img]][tv-master-site] | [![master build coverage][cc-master-img]][cc-master-site] | -[README][v1-readme] • [CHANGELOG][v1-change] +[README][main-readme] • [CHANGELOG][main-change] - Supports Windows PowerShell 5.x - Supports PowerShell Core 6+ on all platforms @@ -46,6 +46,8 @@ branch names e.g.: `git pull or ma` tab completes to `git pull origin #### Releases +- v1.0.0 + ( [README][v1-readme] • [CHANGELOG][v1-change] ) - v1.0.0-beta5 ( [README][v1b5-readme] • [CHANGELOG][v1b5-change] ) - v1.0.0-beta4 @@ -509,7 +511,7 @@ function prompt { [choco-site]: https://chocolatey.org/packages/poshgit/ [psgallery-img]: https://img.shields.io/powershellgallery/dt/posh-git.svg [psgallery-site]: https://www.powershellgallery.com/packages/posh-git -[psgallery-v1]: https://www.powershellgallery.com/packages/posh-git/1.0.0-beta5 +[psgallery-v1]: https://www.powershellgallery.com/packages/posh-git/1.0.0 [w3c-colors]: https://www.w3schools.com/colors/colors_names.asp [posh-sshell-url]: https://github.com/dahlbyk/posh-sshell @@ -538,8 +540,8 @@ function prompt { [v073-change]: https://github.com/dahlbyk/posh-git/blob/v0.7.3/CHANGELOG.md [v073-readme]: https://github.com/dahlbyk/posh-git/blob/v0.7.3/README.md -[v1-change]: https://github.com/dahlbyk/posh-git/blob/master/CHANGELOG.md -[v1-readme]: https://github.com/dahlbyk/posh-git/blob/master/README.md +[main-change]: https://github.com/dahlbyk/posh-git/blob/master/CHANGELOG.md +[main-readme]: https://github.com/dahlbyk/posh-git/blob/master/README.md [v1b1-change]: https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta1/CHANGELOG.md [v1b1-readme]: https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta1/README.md @@ -556,4 +558,8 @@ function prompt { [v1b5-change]: https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta5/CHANGELOG.md [v1b5-readme]: https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta5/README.md +[v1-change]: https://github.com/dahlbyk/posh-git/blob/v1.0.0/CHANGELOG.md +[v1-readme]: https://github.com/dahlbyk/posh-git/blob/v1.0.0/README.md + + [wiki-custom-prompt]: https://github.com/dahlbyk/posh-git/wiki/Customizing-Your-PowerShell-Prompt diff --git a/chocolatey/poshgit.nuspec b/chocolatey/poshgit.nuspec index cc8e1d276..d3a0ae494 100644 --- a/chocolatey/poshgit.nuspec +++ b/chocolatey/poshgit.nuspec @@ -3,8 +3,8 @@ poshgit posh-git - 1.0.0-beta5x - Keith Dahlby, Mark Embling, Jeremy Skinner, Keith Hill + 1.0.0 + Keith Dahlby, Keith Hill, Mark Embling, Jeremy Skinner Keith Dahlby ### posh-git A set of PowerShell scripts which provide Git/PowerShell integration @@ -27,7 +27,7 @@ Note on performance: displaying file status in the git prompt for a very large r Provides prompt with Git status summary information and tab completion for Git commands, parameters, remotes and branch names. poshgit posh-git powershell git https://github.com/dahlbyk/posh-git - https://github.com/dahlbyk/posh-git/blob/master/LICENSE.txt + https://github.com/dahlbyk/posh-git/blob/v1.0.0/LICENSE.txt false diff --git a/src/posh-git.psd1 b/src/posh-git.psd1 index 457ccb723..90df547e1 100644 --- a/src/posh-git.psd1 +++ b/src/posh-git.psd1 @@ -4,7 +4,7 @@ RootModule = 'posh-git.psm1' # Version number of this module. -ModuleVersion = '1.0.0.0' +ModuleVersion = '1.0.0' # ID used to uniquely identify this module GUID = '74c9fd30-734b-4c89-a8ae-7727ad21d1d5' @@ -64,16 +64,13 @@ PrivateData = @{ Tags = @('git', 'prompt', 'tab', 'tab-completion', 'tab-expansion', 'tabexpansion', 'PSEdition_Core') # A URL to the license for this module. - LicenseUri = 'https://github.com/dahlbyk/posh-git/blob/master/LICENSE.txt' + LicenseUri = 'https://github.com/dahlbyk/posh-git/blob/v1.0.0/LICENSE.txt' # A URL to the main website for this project. ProjectUri = 'https://github.com/dahlbyk/posh-git' # ReleaseNotes of this module - ReleaseNotes = 'https://github.com/dahlbyk/posh-git/blob/master/CHANGELOG.md' - - # OVERRIDE THIS FIELD FOR PUBLISHED RELEASES - LEAVE AT 'alpha' FOR CLONED/LOCAL REPO USAGE - Prerelease = 'beta5x' + ReleaseNotes = 'https://github.com/dahlbyk/posh-git/blob/v1.0.0/CHANGELOG.md' } } }