Skip to content

Commit 16bc8f6

Browse files
authored
Merge branch 'release' into seanmcm/0_27_0_release_merge
2 parents 05014a3 + 6c40808 commit 16bc8f6

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Extension/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
* Fix `Rescan Workspace` running an extra time per workspace folder.
2525
* Fix a random crash after settings change.
2626

27+
### Known Issues
28+
* The configuration UI and json shows errors when an older version of `cl.exe` is set in the `compilerPath`. [#5151](https://github.com/microsoft/vscode-cpptools/issues/5151)
29+
* The debugger doesn't work until the extension is reinstalled after macOS High Sierra or older is upgraded to a newer OS. [#5171](https://github.com/microsoft/vscode-cpptools/issues/5171)
30+
* The Outline view may sometimes be incorrect for files outside the workspace. [#3949](https://github.com/microsoft/vscode-cpptools/issues/3949)
31+
2732
## Version 0.27.0-insiders3: March 16, 2019
2833
### Bug Fixes
2934
* Fix update to clang-format 9.0.1 (and without shared library dependencies). [#2887](https://github.com/microsoft/vscode-cpptools/issues/2887), [#3174](https://github.com/microsoft/vscode-cpptools/issues/3174)

Extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cpptools",
33
"displayName": "C/C++",
44
"description": "C/C++ IntelliSense, debugging, and code browsing.",
5-
"version": "0.27.0-master",
5+
"version": "0.27.0",
66
"publisher": "ms-vscode",
77
"preview": true,
88
"icon": "LanguageCCPP_color_128x.png",

Extension/src/main.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ async function offlineInstallation(info: PlatformInformation): Promise<void> {
132132
setInstallationStage('cleanUpUnusedBinaries');
133133
await cleanUpUnusedBinaries(info);
134134

135+
setInstallationStage('cleanUpUnusedBinaries');
136+
await cleanUpUnusedBinaries(info);
137+
135138
setInstallationStage('makeBinariesExecutable');
136139
await makeBinariesExecutable();
137140

0 commit comments

Comments
 (0)