From ed58dc3b498965fa833e0cb4c890996a3a1b4ebe Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sun, 27 Aug 2017 15:44:04 -0400 Subject: [PATCH] Preps v4.5.0-beta --- CHANGELOG.md | 16 ++++++++++++++-- README.md | 4 ++++ package.json | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3a56bc..7740ff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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/). +## [4.5.0-beta] - 2017-08-27 +### Added +- Adds an all-new `Git File History` explorer to the Explorer activity -- enabled via `"gitlens.insiders": true` + - Shows the commit history of the active file -- automatically tracks the active editor + - Provides toolbar buttons to `Refresh` + - Provides a context menu with `Open Changes`, `Compare File with Working Tree`, `Open File`, `Open File Revision`, `Open File in Remote`, `Open File Revision in Remote`, and `Show Commit Details` commands +- Adds a `No stashed changes` message to the `Git Stashes` explorer when there are no stashes +- Adds `${filePath}` token to file formatting + +### Changed +- Changes `gitlens.stashExplorer.stashFileFormat` setting to defaults to `${filePath}` for better separator handling + ## [4.4.3] - 2017-08-30 ## Fixed - Fixes [#135](https://github.com/eamodio/vscode-gitlens/issues/135) - Full-width characters break gutter annotations (really this time) @@ -29,7 +41,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## Removed - Removes unneeded `gitlens.stashExplorer.enabled` configuration setting since users can add or remove custom views natively now -- Removes unneeded `Toggle Git Stashed Explorer` command (`gitlens.stashExplorer.toggle`) since users can add or remove custom views natively now +- Removes unneeded `Toggle Git Stashes Explorer` command (`gitlens.stashExplorer.toggle`) since users can add or remove custom views natively now - Removes the `gitlens.theme.annotations.file.hover.separateLines` configuration setting ## Fixed @@ -52,7 +64,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [4.3.1] - 2017-07-03 ## Added - Adds `gitlens.stashExplorer.enabled` setting to specify whether or not to show the `Git Stashes` explorer -- Adds `Toggle Git Stashed Explorer` command (`gitlens.stashExplorer.toggle`) - toggles the `Git Stashes` explorer on and off +- Adds `Toggle Git Stashes Explorer` command (`gitlens.stashExplorer.toggle`) - toggles the `Git Stashes` explorer on and off ## Changed - Hides the `Git Stashes` explorer by default diff --git a/README.md b/README.md index c716fd1..6b3cb5c 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,10 @@ GitLens provides an unobtrusive blame annotation at the end of the current line, - Adds a [customizable](#git-file-history-explorer-settings) `Git File History` explorer to the Explorer activity -- currently [insiders](#insiders) only + - Shows the commit history of the active file -- automatically tracks the active editor + - Provides toolbar buttons to `Refresh` + - Provides a context menu with `Open Changes`, `Compare File with Working Tree`, `Open File`, `Open File Revision`, `Open File in Remote`, `Open File Revision in Remote`, and `Show Commit Details` commands + - Adds a [customizable](#git-stashes-explorer-settings) `Git Stashes` explorer to the Explorer activity ![Git Stashes explorer](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-stashes.png) diff --git a/package.json b/package.json index 6de3747..dee7193 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "4.4.3", + "version": "4.5.0-beta", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com"