Change version to 5.6.0

This commit is contained in:
Jason Haslam 2019-12-12 09:41:45 -07:00
parent be8f269c91
commit f570bc8950
2 changed files with 24 additions and 2 deletions

View File

@ -4,8 +4,8 @@ project(GitAhead)
# Set name and version.
set(GITAHEAD_NAME "GitAhead")
set(GITAHEAD_VERSION_MAJOR 2)
set(GITAHEAD_VERSION_MINOR 5)
set(GITAHEAD_VERSION_PATCH 11)
set(GITAHEAD_VERSION_MINOR 6)
set(GITAHEAD_VERSION_PATCH 0)
set(GITAHEAD_VERSION
"${GITAHEAD_VERSION_MAJOR}.${GITAHEAD_VERSION_MINOR}.${GITAHEAD_VERSION_PATCH}"
)

View File

@ -1,3 +1,25 @@
### v2.6.0 - 2019-12-12
#### Added
* Added options to automatically prune remote tracking branches on fetch/pull. (Kas)
* Added context menu action to push tags to the default remote. (Kas)
* Added prompt to delete tags (including from the remote). (Kas)
* Added German language translation. (Kas)
* Added theme variables to color the tab bar independently. (Kas)
* Added compact history mode (in the gear popup menu). (Attila Greguss)
#### Fixed
* Jump to matching reference on click instead of selection change.
* Fixed possible invalid commit editor message after revert, cherry-pick, etc.
* Fixed inconsistent history list font size on some displays.
* Fixed failure to cancel some remote transfer operations.
* Removed artificial limitation on merging and rebasing with a detached HEAD.
* Fixed crash when merging or rebasing with a detached HEAD. (Kas)
----
### v2.5.11 - 2019-10-30
#### Added