Skip to content

Commit

Permalink
Bump version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
wdhongtw committed Jun 12, 2022
1 parent cf856eb commit 4ed5205
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -47,7 +47,11 @@
"type": "string",
"default": "info",
"description": "Log level for extension log output",
"enum": ["error", "warning", "info"]
"enum": [
"error",
"warning",
"info"
]
}
}
}
Expand Down

0 comments on commit 4ed5205

Please sign in to comment.