Skip to content

Commit

Permalink
Merge branch 'seanmcm/0_27_0_release_merge' of https://github.com/Mic…
Browse files Browse the repository at this point in the history
…rosoft/vscode-cpptools into seanmcm/0_27_0_release_merge
  • Loading branch information
sean-mcmanus committed Mar 26, 2020
2 parents 579e4db + 16bc8f6 commit e8080fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
* Fix `Rescan Workspace` running an extra time per workspace folder.
* Fix a random crash after settings change.

### Known Issues
* 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)
* 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)
* The Outline view may sometimes be incorrect for files outside the workspace. [#3949](https://github.com/microsoft/vscode-cpptools/issues/3949)

## Version 0.27.0-insiders3: March 16, 2019
### Bug Fixes
* 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)
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": "0.27.0-master",
"version": "0.27.0",
"publisher": "ms-vscode",
"preview": true,
"icon": "LanguageCCPP_color_128x.png",
Expand Down
3 changes: 3 additions & 0 deletions Extension/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ async function offlineInstallation(info: PlatformInformation): Promise<void> {
setInstallationStage('cleanUpUnusedBinaries');
await cleanUpUnusedBinaries(info);

setInstallationStage('cleanUpUnusedBinaries');
await cleanUpUnusedBinaries(info);

setInstallationStage('makeBinariesExecutable');
await makeBinariesExecutable();

Expand Down

0 comments on commit e8080fc

Please sign in to comment.