diff --git a/CHANGELOG.md b/CHANGELOG.md index 712f224e1..f777a080a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,54 @@ # posh-git Release History +## 1.1.0 - March 31, 2022 + +### Added + +- `Remove-PoshGitFromProfile` + ([git-for-windows/build-extra#401](https://github.com/git-for-windows/build-extra/pull/401)) + ([PR #877](https://github.com/dahlbyk/posh-git/pull/877)) + Thanks @dscho + +### Fixed + +- Fix branch status when cherry-picking, merging, reverting + ([#818](https://github.com/dahlbyk/posh-git/issues/818)) + ([PR #828](https://github.com/dahlbyk/posh-git/pull/828)) + ([PR #894](https://github.com/dahlbyk/posh-git/pull/894)) + Thanks @NihilityT +- Fix tab expansion for PowerShell aliases to `git.exe` + ([#854](https://github.com/dahlbyk/posh-git/issues/854)) + ([PR #855](https://github.com/dahlbyk/posh-git/pull/855)) +- Fix tab expansion for symbolic refs + ([#867](https://github.com/dahlbyk/posh-git/issues/867)) + ([PR #868](https://github.com/dahlbyk/posh-git/pull/868)) + Thanks @dmringo +- Fix status inside `.github` directories + ([#873](https://github.com/dahlbyk/posh-git/issues/873)) + ([PR #874](https://github.com/dahlbyk/posh-git/pull/874)) + ([PR #893](https://github.com/dahlbyk/posh-git/pull/893)) + Thanks @jethas-bennettjones +- Version warning no longer flags VFS for Git + ([#860](https://github.com/dahlbyk/posh-git/issues/860)) + ([PR #884](https://github.com/dahlbyk/posh-git/pull/884)) + Thanks @shmuelie +- Version warning no longer flags Git for Windows release candidates + ([#845](https://github.com/dahlbyk/posh-git/issues/845)) + ([PR #885](https://github.com/dahlbyk/posh-git/pull/885)) + Thanks @dscho + +### Chores + +- Migrated to GitHub Actions + ([PR #878](https://github.com/dahlbyk/posh-git/pull/878)) + Thanks @dscho +- Fixed Scoop install instructions + ([PR #862](https://github.com/dahlbyk/posh-git/pull/862)) + Thanks @cjstewart88 +- Fix typo + ([PR #887](https://github.com/dahlbyk/posh-git/pull/887)) + Thanks @bennett1412 + ## 1.0.0 - March 10, 2021 - Released to PowerShell Gallery. diff --git a/README.md b/README.md index daeef45f3..2b21f9c48 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,8 @@ branch names e.g.: `git pull or ma` tab completes to `git pull origin #### Releases +- v1.1.0 + ( [README][v1.1-readme] • [CHANGELOG][v1.1-change] ) - v1.0.0 ( [README][v1-readme] • [CHANGELOG][v1-change] ) - v1.0.0-beta5 @@ -559,5 +561,7 @@ function prompt { [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 +[v1.1-change]: https://github.com/dahlbyk/posh-git/blob/v1.1.0/CHANGELOG.md +[v1.1-readme]: https://github.com/dahlbyk/posh-git/blob/v1.1.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 750f50d2c..73b648f12 100644 --- a/chocolatey/poshgit.nuspec +++ b/chocolatey/poshgit.nuspec @@ -3,7 +3,7 @@ poshgit posh-git - 1.0.0-beta5x + 1.1.0 Keith Dahlby, Keith Hill, Mark Embling, Jeremy Skinner Keith Dahlby ### posh-git @@ -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.1.0/LICENSE.txt false diff --git a/src/posh-git.psd1 b/src/posh-git.psd1 index 50c63728d..a9d17f32d 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.1' +ModuleVersion = '1.1.0' # ID used to uniquely identify this module GUID = '74c9fd30-734b-4c89-a8ae-7727ad21d1d5' @@ -65,16 +65,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.1.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 = 'alpha' + ReleaseNotes = 'https://github.com/dahlbyk/posh-git/blob/v1.1.0/CHANGELOG.md' } } }