diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ef8d85..f7f843c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [0.6.9] - 2021-04-08 +- Adds setting `magit.hide-status-sections` to hide listed sections from status view. @dandavison (Dan Davison) + ## [0.6.8] - 2021-04-02 - Fixed issue with commiting on remote windows @stevenguh (Steven Guh) diff --git a/README.md b/README.md index 91e6c37..4282bbd 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,9 @@ Essential commands ## Settings - `Forge-enabled`: Enable Forge functionality (show pull requests, issues, etc from e.g. Github) -- `Display-buffer-function`: choose which side for magit windows to open on. +- `Display-buffer-function`: Choose which side for magit windows to open on. +- `Hide-status-sections`: Hide listed sections from status view. +- `Quick-switch-enabled`: Automatically confirm switch menu after enabling a switch (e.g. --force) ## Vim support (VSCodeVim) diff --git a/package-lock.json b/package-lock.json index 4a9669c..2e9b6f6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "magit", - "version": "0.6.8", + "version": "0.6.9", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3783260..27e9042 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "author": { "name": "Kristian Andersen Hole" }, - "version": "0.6.8", + "version": "0.6.9", "engines": { "vscode": "^1.50.0" }, @@ -408,7 +408,7 @@ "magit.quick-switch-enabled": { "type": "boolean", "default": false, - "description": "Enable quick switch where the switch menu will exit on selection" + "description": "Enable automatic confirm for switch menu after enabling a switch (e.g. --force)" } } },