-
-
Notifications
You must be signed in to change notification settings - Fork 812
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v0.7.2 #522
Release v0.7.2 #522
Changes from 8 commits
a91bfd7
72c8747
e356d3b
74ec4d2
6b0de00
65ba333
0c4aa3a
ec5204f
d91163a
bff1496
162cba1
4ad8496
cd2ef7d
3a9af85
ba910ba
2aba992
2a9cfbc
6eb84bd
f4979cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,12 @@ You can also tab complete remote names and branch names e.g.: `git pull or<tab> | |
- `master` avoids breaking changes, maintaining v0.x. | ||
( [README](https://github.com/dahlbyk/posh-git/blob/master/README.md) | ||
• [CHANGELOG](https://github.com/dahlbyk/posh-git/blob/master/CHANGELOG.md) ) | ||
- Supports PowerShell 3+ | ||
- `develop` includes breaking changes, toward [v1.0](https://github.com/dahlbyk/posh-git/issues/328). | ||
( [README](https://github.com/dahlbyk/posh-git/blob/develop/README.md) | ||
• [CHANGELOG](https://github.com/dahlbyk/posh-git/blob/develop/CHANGELOG.md) ) | ||
- Supports PowerShell 5 and PowerShell Core 6 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you change the first one to |
||
- Supports [ANSI escape sequences](https://en.wikipedia.org/wiki/ANSI_escape_code) for color customization | ||
- Previous releases: | ||
- v0.7.1 | ||
( [README](https://github.com/dahlbyk/posh-git/blob/v0.7.1/README.md) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
ModuleToProcess = 'posh-git.psm1' | ||
|
||
# Version number of this module. | ||
ModuleVersion = '0.7.2.0' | ||
ModuleVersion = '0.7.2' | ||
|
||
# ID used to uniquely identify this module | ||
GUID = '74c9fd30-734b-4c89-a8ae-7727ad21d1d5' | ||
|
@@ -25,6 +25,7 @@ PowerShellVersion = '2.0' | |
FunctionsToExport = @( | ||
'Invoke-NullCoalescing', | ||
'Add-PoshGitToProfile', | ||
'Get-PromptPath', | ||
'Write-GitStatus', | ||
'Write-Prompt', | ||
'Write-VcsStatus', | ||
|
@@ -47,7 +48,7 @@ FunctionsToExport = @( | |
CmdletsToExport = @() | ||
|
||
# Variables to export from this module | ||
VariablesToExport = @() | ||
VariablesToExport = @('GitPromptScriptBlock') | ||
|
||
# Aliases to export from this module | ||
AliasesToExport = @('??') | ||
|
@@ -61,16 +62,16 @@ PrivateData = @{ | |
Tags = @('git', 'prompt', 'tab', 'tab-completion', 'tab-expansion', 'tabexpansion') | ||
|
||
# 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/v0.7.2-pre1/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' | ||
ReleaseNotes = 'https://github.com/dahlbyk/posh-git/blob/v0.7.2-pre1/CHANGELOG.md' | ||
|
||
# TODO: REMOVE BEFOE RELEASE | ||
PreReleaseVersion = 'pre0' | ||
Prerelease = 'pre1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't we need to update this or do you do that manually before you publish? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I'll drop this and fix all the other |
||
} | ||
|
||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably should be
Windows PowerShell 3+
to help make distinction between Windows PowerShell and PowerShell Core.