Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlbyk committed Mar 31, 2022
1 parent f5255b6 commit d8b126d
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 8 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ branch names e.g.: `git pull or<tab> ma<tab>` 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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions chocolatey/poshgit.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>poshgit</id>
<title>posh-git</title>
<version>1.0.0-beta5x</version>
<version>1.1.0</version>
<authors>Keith Dahlby, Keith Hill, Mark Embling, Jeremy Skinner</authors>
<owners>Keith Dahlby</owners>
<description>### posh-git
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.1.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.1'
ModuleVersion = '1.1.0'

# ID used to uniquely identify this module
GUID = '74c9fd30-734b-4c89-a8ae-7727ad21d1d5'
Expand Down Expand Up @@ -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'
}
}
}

0 comments on commit d8b126d

Please sign in to comment.