Skip to content
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

Version 0.7 Release #327

Closed
wants to merge 9 commits into from
Closed
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Changelog
=========

v0.7.0 - 2017-01-31
----------------------------
- Performance of Get-GitStatus on large repos has been improved
- Fix crash on PowerShell Core due to missing .NET types for WindowsIdentity/Principal
- Fix syntax error on setenv calls
- Fix temp path issue with ~ in 8.3 filenames
- Fix unable to find type [EnvironmentVariableTarget] in PowerShell on .NET Core
- Fix support for bare repository ([#291](https://github.com/dahlbyk/posh-git/issues/291))
- Fewer errors generated in global $Error collection
- Remove error thrown by symbolic-ref and describe
- Update module import so that it sets the prompt function *iff* the user does not have a customized prompt function ([#217](https://github.com/dahlbyk/posh-git/issues/217))
- Update profile.example.ps1 to remove prompt function and tweak how module is imported
- Add new commmand Add-PoshGitToProfile
- Add about_posh-git help topic
- Add new branch status to indicate upstream is gone ([#326](https://github.com/dahlbyk/posh-git/pull/326))
- Add ahead/behind count to prompt ([#256](https://github.com/dahlbyk/posh-git/pull/256))
- Add BranchBehindAndAheadDisplay setting to control count display (Full (default), Compact, Minimal)
48 changes: 23 additions & 25 deletions posh-git.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ModuleToProcess = 'posh-git.psm1'

# Version number of this module.
ModuleVersion = '0.6.1.20160330'
ModuleVersion = '0.7.0'

# ID used to uniquely identify this module
GUID = '74c9fd30-734b-4c89-a8ae-7727ad21d1d5'
Expand All @@ -13,7 +13,7 @@ GUID = '74c9fd30-734b-4c89-a8ae-7727ad21d1d5'
Author = 'Keith Dahlby and contributors'

# Copyright statement for this module
Copyright = '(c) 2010-2016 Keith Dahlby and contributors'
Copyright = '(c) 2010-2017 Keith Dahlby and contributors'

# Description of the functionality provided by this module
Description = 'A PowerShell environment for Git'
Expand All @@ -22,22 +22,26 @@ Description = 'A PowerShell environment for Git'
PowerShellVersion = '2.0'

# Functions to export from this module
FunctionsToExport = @('Invoke-NullCoalescing',
'Write-GitStatus',
'Write-Prompt',
'Write-VcsStatus',
'Get-GitStatus',
'Enable-GitColors',
'Get-GitDirectory',
'TabExpansion',
'Get-AliasPattern',
'Get-SshAgent',
'Start-SshAgent',
'Stop-SshAgent',
'Add-SshKey',
'Get-SshPath',
'Update-AllBranches',
'tgit')
FunctionsToExport = @(
'Invoke-NullCoalescing',
'Add-PoshGitToProfile',
'Write-GitStatus',
'Write-Prompt',
'Write-VcsStatus',
'Get-GitBranch',
'Get-GitStatus',
'Enable-GitColors',
'Get-GitDirectory',
'TabExpansion',
'Get-AliasPattern',
'Get-SshAgent',
'Start-SshAgent',
'Stop-SshAgent',
'Add-SshKey',
'Get-SshPath',
'Update-AllBranches',
'tgit'
)

# Cmdlets to export from this module
CmdletsToExport = @()
Expand All @@ -54,20 +58,14 @@ PrivateData = @{
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('git')
Tags = @('git', 'tab-completion', 'tab-expansion')

# A URL to the license for this module.
LicenseUri = 'https://github.com/dahlbyk/posh-git/blob/master/LICENSE.txt'

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

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
# ReleaseNotes = ''

} # End of PSData hashtable

} # End of PrivateData hashtable
Expand Down