From 4ed52056b0ed49c225d9970f8cc3b86f832565dc Mon Sep 17 00:00:00 2001 From: Weida Hong Date: Sun, 12 Jun 2022 21:51:56 +0800 Subject: [PATCH] Bump version and update changelog --- CHANGELOG.md | 10 ++++++++++ README.md | 6 ++++++ package-lock.json | 2 +- package.json | 8 ++++++-- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98574ef..b496179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to the "gpg-indicator" extension will be documented in this Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## [0.6.1] - 2022-03-09 +### Added +- Add options to control output log level +### Changed +- Passphrase no longer shows up in extension output panel +### Fixed +- Support passphrases which contain `%` character +- Use correct folder string representation on Windows + + ## [0.6.0] - 2022-03-09 ### Changed - Remove the binary tool dependency of `expect` diff --git a/README.md b/README.md index 328c26c..64929ae 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,8 @@ if you like this extension!! 😸 - `gpgIndicator.statusRefreshInterval` - The interval of background key status refresh loop. Default to 30 seconds. +- `gpgIndicator.outputLogLevel` + - The log level for extension log output. Default to `info`. ## Known Issues @@ -63,6 +65,10 @@ and the key ID is the hex string after the algorithm identifier. ## Release Notes +### 0.6.1 + +Fix bug for passphrases which contain `%` character and some file system path. + ### 0.6.0 Finally, remove the dependency of the binary tool, `expect`. :D diff --git a/package-lock.json b/package-lock.json index 864c4c6..31583e5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "gpg-indicator", - "version": "0.6.0", + "version": "0.6.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 453c669..f903771 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "name": "Weida Hong", "url": "https://blog.bitisle.net" }, - "version": "0.6.0", + "version": "0.6.1", "publisher": "wdhongtw", "engines": { "vscode": "^1.45.0" @@ -47,7 +47,11 @@ "type": "string", "default": "info", "description": "Log level for extension log output", - "enum": ["error", "warning", "info"] + "enum": [ + "error", + "warning", + "info" + ] } } }