diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b6bf8c..6346a00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +# v0.6.0 + +### What's New + +- Configuration changes: + * `fossil.path` option can change `fossil` path without restart + * `fossil.path` and `fossil.username` options are of string type now, i.e. easily editable in "Settings" panel + * Remove `fossil.enabled` option +- Warn user when `fossil` executable is not found +- Log output with timestamp and log level + + # v0.5.7 ### What's New diff --git a/docs/dev/release.md b/docs/dev/release.md index 34801fb..3e7a437 100644 --- a/docs/dev/release.md +++ b/docs/dev/release.md @@ -1,6 +1,6 @@ # How to release vscode-fossil extension -## Desribe the changes +## Describe the changes 1. Update version in `package.json` 1. Update `CHANGELOG.md` diff --git a/package.json b/package.json index a9bfce8..32e0bbc 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "bugs": { "url": "https://github.com/koog1000/vscode-fossil/issues" }, - "version": "0.5.7", + "version": "0.6.0", "engines": { "vscode": "^1.36.0" }, @@ -1058,7 +1058,8 @@ }, "fossil.path": { "type": "string", - "description": "%config.path%" + "description": "%config.path%", + "scope": "machine" }, "fossil.username": { "type": "string",