diff --git a/CHANGELOG.md b/CHANGELOG.md index 24f3735..600d6b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [3.6.0-beta] - 2017-05-27 +### Added +- Adds diff information (the line's previous version) into the active line hover +- Adds a `gitlens.diffWithWorking` status bar command option - compares the current line commit with the working tree + +### Changed +- Changes the behavior of the `Compare File with Working Tree` command (`gitlens.diffWithWorking`) - always does what it says :) + - Compares the current file with the working tree -- if the current file *is* the working file, it will show a `File matches the working tree` message +- Changes the behavior of the `Compare File with Previous` command (`gitlens.diffWithPrevious`) - always does what it says :) + - Compares the current file with the previous commit to that file +- Changes the behavior of the `gitlens.diffWithPrevious` status bar command option - compares the current line commit with the previous +- Renames `Compare File with Previous Commit` command to `Compare File with Previous` +- Renames `Compare Line with Previous Commit` command to `Compare Line Commit with Previous` +- Renames `Compare Line with Working Tree` command to `Compare Line Commit with Working Tree` +- Renames `Compare with Previous Commit` in quick pick menus to `Compare File with Previous` +- Renames `Compare with Working Tree` in quick pick menus to `Compare File with Working Tree` + ## [3.5.1] - 2017-05-25 ### Changed - Changes certain code lens actions to be unavailable (unclickable) when the commit referenced is uncommitted - avoids unwanted error messages @@ -19,7 +36,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Reduces the number of git calls on known "untrackables" - Caches many more git commands to reduce git command roundtrips and parsing - Increases the debounce (delay) on cursor movement to reduce lag when navigating around a file -- Adds diff information (previous line's code) into the active line hover when the current line is uncommitted +- Adds diff information (the line's previous version) into the active line hover when the current line is uncommitted - Adds `gitlens.statusBar.alignment` settings to control the alignment of the status bar -- thanks to [PR #72](https://github.com/eamodio/vscode-gitlens/pull/72) by Zack Schuster ([@zackschuster](https://github.com/zackschuster))! - Adds `Open Branch in Remote` command (`gitlens.openBranchInRemote`) - opens the current branch commits in the supported remote service - Adds `Open Repository in Remote` command (`gitlens.openRepoInRemote`) - opens the repository in the supported remote service diff --git a/README.md b/README.md index 6b8c76b..f11b2ac 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ GitLens provides an unobtrusive blame annotation at the end of the selected line #### Git Blame Annotations -- Adds a **blame annotation** to the end of the selected line showing the commit id and message, with more details in a hover popup ([optional](#extension-settings), on by default) +- Adds a **blame annotation** to the end of the selected line showing the commit id and message, with more details (including the line's previous version) in a hover popup ([optional](#extension-settings), on by default) - Adds a `Toggle Blame Annotations` command (`gitlens.toggleBlame`) with a shortcut of `alt+b` to toggle **inline Git blame annotations** for a whole file with multiple styles — compact, expanded, and trailing - Also adds a `Show Blame Annotations` command (`gitlens.showBlame`) diff --git a/package.json b/package.json index 7152a0b..85ad9c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "3.5.1", + "version": "3.6.0-beta", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com"