Skip to content

Commit c249d61

Browse files
committed
minor bugfix
1 parent 8a8e2d3 commit c249d61

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [1.6.2] - 2018-05-08
7+
### Fixed
8+
- Upgrade dependencies due to security vulnerability in hoek
9+
610
## [1.6.1] - 2017-11-11
711
### Fixed
812
- Correct default keybindins in README.md

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "clang-format",
33
"displayName": "Clang-Format",
44
"description": "Use Clang-Format in Visual Studio Code",
5-
"version": "1.6.1",
5+
"version": "1.6.2",
66
"publisher": "xaver",
77
"engines": {
88
"vscode": "^1.1.0"

src/clangPath.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function getBinPath(binname: string) {
3434
return binname;
3535
}
3636

37-
function correctBinname(binname: string): [string] {
37+
function correctBinname(binname: string): string[] {
3838
if (process.platform === 'win32') {
3939
return [binname + '.exe', binname + '.bat', binname + '.cmd', binname];
4040
} else {

0 commit comments

Comments
 (0)