Skip to content

Commit 6c550d4

Browse files
committed
Finalize v1.0.0-beta4
1 parent ddfcd46 commit 6c550d4

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ branch names e.g.: `git pull or<tab> ma<tab>` tab completes to `git pull origin
4646

4747
#### Releases
4848

49+
- v1.0.0-beta4
50+
( [README][v1b4-readme][CHANGELOG][v1b4-change] )
4951
- v1.0.0-beta3
5052
( [README][v1b3-readme][CHANGELOG][v1b3-change] )
5153
- v1.0.0-beta2
@@ -476,7 +478,7 @@ function prompt {
476478
[choco-site]: https://chocolatey.org/packages/poshgit/
477479
[psgallery-img]: https://img.shields.io/powershellgallery/dt/posh-git.svg
478480
[psgallery-site]: https://www.powershellgallery.com/packages/posh-git
479-
[psgallery-v1]: https://www.powershellgallery.com/packages/posh-git/1.0.0-beta3
481+
[psgallery-v1]: https://www.powershellgallery.com/packages/posh-git/1.0.0-beta4
480482
[w3c-colors]: https://www.w3schools.com/colors/colors_names.asp
481483

482484
[posh-sshell-url]: https://github.com/dahlbyk/posh-sshell
@@ -516,4 +518,7 @@ function prompt {
516518
[v1b3-change]: https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta3/CHANGELOG.md
517519
[v1b3-readme]: https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta3/README.md
518520

521+
[v1b4-change]: https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta4/CHANGELOG.md
522+
[v1b4-readme]: https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta4/README.md
523+
519524
[wiki-custom-prompt]: https://github.com/dahlbyk/posh-git/wiki/Customizing-Your-PowerShell-Prompt

chocolatey/poshgit.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>poshgit</id>
55
<title>posh-git</title>
6-
<version>1.0.0-beta3x</version>
6+
<version>1.0.0-beta4</version>
77
<authors>Keith Dahlby, Mark Embling, Jeremy Skinner, Keith Hill</authors>
88
<owners>Keith Dahlby</owners>
99
<description>### posh-git
@@ -27,7 +27,7 @@ Note on performance: displaying file status in the git prompt for a very large r
2727
<summary>Provides prompt with Git status summary information and tab completion for Git commands, parameters, remotes and branch names.</summary>
2828
<tags>poshgit posh-git powershell git</tags>
2929
<projectUrl>https://github.com/dahlbyk/posh-git</projectUrl>
30-
<licenseUrl>https://github.com/dahlbyk/posh-git/blob/master/LICENSE.txt</licenseUrl>
30+
<licenseUrl>https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta4/LICENSE.txt</licenseUrl>
3131
<requireLicenseAcceptance>false</requireLicenseAcceptance>
3232
<dependencies>
3333
<dependency id="chocolatey" version="0.9.10" />

src/posh-git.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'posh-git.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.0.0.0'
7+
ModuleVersion = '1.0.0'
88

99
# ID used to uniquely identify this module
1010
GUID = '74c9fd30-734b-4c89-a8ae-7727ad21d1d5'
@@ -64,16 +64,16 @@ PrivateData = @{
6464
Tags = @('git', 'prompt', 'tab', 'tab-completion', 'tab-expansion', 'tabexpansion', 'PSEdition_Core')
6565

6666
# A URL to the license for this module.
67-
LicenseUri = 'https://github.com/dahlbyk/posh-git/blob/master/LICENSE.txt'
67+
LicenseUri = 'https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta4/LICENSE.txt'
6868

6969
# A URL to the main website for this project.
7070
ProjectUri = 'https://github.com/dahlbyk/posh-git'
7171

7272
# ReleaseNotes of this module
73-
ReleaseNotes = 'https://github.com/dahlbyk/posh-git/blob/master/CHANGELOG.md'
73+
ReleaseNotes = 'https://github.com/dahlbyk/posh-git/blob/v1.0.0-beta4/CHANGELOG.md'
7474

7575
# OVERRIDE THIS FIELD FOR PUBLISHED RELEASES - LEAVE AT 'alpha' FOR CLONED/LOCAL REPO USAGE
76-
Prerelease = 'beta3x'
76+
Prerelease = 'beta4'
7777
}
7878
}
7979
}

0 commit comments

Comments
 (0)