Skip to content

Commit

Permalink
1_1_2 release (#6532)
Browse files Browse the repository at this point in the history
* Fix fileDirname. (#6482)
* Update changelog.
* Update the version.
  • Loading branch information
sean-mcmanus authored Nov 18, 2020
1 parent adff6e6 commit 16f3521
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# C/C++ for Visual Studio Code Change Log

## Version 1.1.2: November 17, 2020
### Bug Fix
* Fix resolution of `${fileDirname}` with `cppbuild` tasks. [#6386](https://github.com/microsoft/vscode-cpptools/issues/6386)

## Version 1.1.1: November 9, 2020
### Bug Fixes
* Fix cpptools binaries sometimes not getting installed on Windows. [#6453](https://github.com/microsoft/vscode-cpptools/issues/6453)
Expand Down
2 changes: 1 addition & 1 deletion Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpptools",
"displayName": "C/C++",
"description": "C/C++ IntelliSense, debugging, and code browsing.",
"version": "1.1.1",
"version": "1.1.2",
"publisher": "ms-vscode",
"icon": "LanguageCCPP_color_128x.png",
"readme": "README.md",
Expand Down
2 changes: 1 addition & 1 deletion Extension/src/LanguageServer/cppBuildTaskProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ class CustomBuildTaskTerminal implements Pseudoterminal {
const file: string = editor.document.fileName;
return {
"file": file,
"fileDirname": fileDir.uri.fsPath,
"fileDirname": path.parse(file).dir,
"fileBasenameNoExtension": path.parse(file).name,
"workspaceFolder": fileDir.uri.fsPath
};
Expand Down

0 comments on commit 16f3521

Please sign in to comment.