Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlbyk committed Mar 11, 2021
1 parent b8a3f8f commit 2b26ee2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ branch names e.g.: `git pull or<tab> ma<tab>` 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
Expand All @@ -46,6 +46,8 @@ branch names e.g.: `git pull or<tab> ma<tab>` 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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
6 changes: 3 additions & 3 deletions chocolatey/poshgit.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<metadata>
<id>poshgit</id>
<title>posh-git</title>
<version>1.0.0-beta5x</version>
<authors>Keith Dahlby, Mark Embling, Jeremy Skinner, Keith Hill</authors>
<version>1.0.0</version>
<authors>Keith Dahlby, Keith Hill, Mark Embling, Jeremy Skinner</authors>
<owners>Keith Dahlby</owners>
<description>### posh-git
A set of PowerShell scripts which provide Git/PowerShell integration
Expand All @@ -27,7 +27,7 @@ Note on performance: displaying file status in the git prompt for a very large r
<summary>Provides prompt with Git status summary information and tab completion for Git commands, parameters, remotes and branch names.</summary>
<tags>poshgit posh-git powershell git</tags>
<projectUrl>https://github.com/dahlbyk/posh-git</projectUrl>
<licenseUrl>https://github.com/dahlbyk/posh-git/blob/master/LICENSE.txt</licenseUrl>
<licenseUrl>https://github.com/dahlbyk/posh-git/blob/v1.0.0/LICENSE.txt</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<dependencies>
<dependency id="chocolatey" version="0.9.10" />
Expand Down
9 changes: 3 additions & 6 deletions src/posh-git.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
}
}
}

0 comments on commit 2b26ee2

Please sign in to comment.