Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# C/C++ for Visual Studio Code Changelog

## Version 1.35.0: September 10, 2026
### Enhancement
* Improve workspace indexing performance.
Comment thread
sean-mcmanus marked this conversation as resolved.

### Bug Fixes
* Fix false IntelliSense errors when initializing a variable with a value from the same unnamed enum. [#14726](https://github.com/microsoft/vscode-cpptools/issues/14726)
* Fix the workspace parsing status briefly reporting completion while a newer parse is still running.
* Fix 'Create Declaration/Definition' incorrectly being offered for explicit template instantiations.
* Fix tag parser hangs when database initialization fails or shutdown interrupts a pending request.
* Various localization updates.

## Version 1.34.4: September 9, 2026
### Enhancements
* Add folding support for C++ `public`, `private`, and `protected` access sections. [#14645](https://github.com/microsoft/vscode-cpptools/issues/14645)
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.34.4-main",
"version": "1.35.0-main",
"publisher": "ms-vscode",
"icon": "LanguageCCPP_color_128x.png",
"readme": "README.md",
Expand Down
Loading