Skip to content

Commit c0d5f55

Browse files
committed
Preps v3.6.0-beta
1 parent 68f6ae8 commit c0d5f55

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [3.6.0-beta] - 2017-05-27
8+
### Added
9+
- Adds diff information (the line's previous version) into the active line hover
10+
- Adds a `gitlens.diffWithWorking` status bar command option - compares the current line commit with the working tree
11+
12+
### Changed
13+
- Changes the behavior of the `Compare File with Working Tree` command (`gitlens.diffWithWorking`) - always does what it says :)
14+
- 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
15+
- Changes the behavior of the `Compare File with Previous` command (`gitlens.diffWithPrevious`) - always does what it says :)
16+
- Compares the current file with the previous commit to that file
17+
- Changes the behavior of the `gitlens.diffWithPrevious` status bar command option - compares the current line commit with the previous
18+
- Renames `Compare File with Previous Commit` command to `Compare File with Previous`
19+
- Renames `Compare Line with Previous Commit` command to `Compare Line Commit with Previous`
20+
- Renames `Compare Line with Working Tree` command to `Compare Line Commit with Working Tree`
21+
- Renames `Compare with Previous Commit` in quick pick menus to `Compare File with Previous`
22+
- Renames `Compare with Working Tree` in quick pick menus to `Compare File with Working Tree`
23+
724
## [3.5.1] - 2017-05-25
825
### Changed
926
- 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
1936
- Reduces the number of git calls on known "untrackables"
2037
- Caches many more git commands to reduce git command roundtrips and parsing
2138
- Increases the debounce (delay) on cursor movement to reduce lag when navigating around a file
22-
- Adds diff information (previous line's code) into the active line hover when the current line is uncommitted
39+
- Adds diff information (the line's previous version) into the active line hover when the current line is uncommitted
2340
- 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))!
2441
- Adds `Open Branch in Remote` command (`gitlens.openBranchInRemote`) - opens the current branch commits in the supported remote service
2542
- Adds `Open Repository in Remote` command (`gitlens.openRepoInRemote`) - opens the repository in the supported remote service

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ GitLens provides an unobtrusive blame annotation at the end of the selected line
2020

2121
#### Git Blame Annotations
2222

23-
- 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)
23+
- 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)
2424

2525
- 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
2626
- Also adds a `Show Blame Annotations` command (`gitlens.showBlame`)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitlens",
3-
"version": "3.5.1",
3+
"version": "3.6.0-beta",
44
"author": {
55
"name": "Eric Amodio",
66
"email": "[email protected]"

0 commit comments

Comments
 (0)