diff --git a/CHANGELOG.md b/CHANGELOG.md index ae5403d..be52c08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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/). +## [9.5.1] - 2019-02-13 + +### Added + +- Adds better tooltips for file revisions (`gitlen://` uris) — includes the commit id +- Adds an _Open Revision from Branch or Tag..._ (`gitlens.openFileRevisionFromBranch`) command to open the revision of the current file from the selected branch — closes [#646](https://github.com/eamodio/vscode-gitlens/issues/646) + +### Fixed + +- Fixes issues with the welcome page and the interactive settings in the latest vscode insiders build + ## [9.5.0] - 2019-02-06 ### Added diff --git a/README.md b/README.md index 6699c9b..6eb7eaf 100644 --- a/README.md +++ b/README.md @@ -613,6 +613,8 @@ The compare view provides the following features, - Adds an _Open Revision..._ command (`gitlens.openFileRevision`) to open the selected revision for the current file +- Adds an _Open Revision from Branch or Tag..._ command (`gitlens.openFileRevisionFromBranch`) to open the revision of the current file from the selected branch + - Adds an _Open Changes (with difftool)_ command (`gitlens.externalDiff`) to the source control group and source control resource context menus to open the changes of a file or set of files with the configured git difftool - Adds an _Open All Changes (with difftool)_ command (`gitlens.externalDiffAll`) to open all working changes with the configured git difftool diff --git a/package.json b/package.json index 6ef0692..0b98f9b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "gitlens", "displayName": "GitLens — Git supercharged", "description": "Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more", - "version": "9.5.0", + "version": "9.5.1", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com"