diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index c457dfe44..9eced9c9d 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,11 +1,18 @@ # C/C++ for Visual Studio Code Changelog ## Version 1.26.0: May 22, 2025 +### Bug Fixes +* Fix include completion adding an extra `"` in `insert` mode. [#13615](https://github.com/microsoft/vscode-cpptools/issues/13615) +* Fix a bug with compiler querying of MinGW. [#13622](https://github.com/microsoft/vscode-cpptools/issues/13622) +* Fix a tag parser crash regression. + +## Version 1.26.0: May 21, 2025 ### New Feature * Improve the context provided for C++ Copilot suggestions. -### Enhancement +### Enhancements * Add support for c++26/2c, gnu++26/2c, and c++23preview configurations. [#12963](https://github.com/microsoft/vscode-cpptools/issues/12963), [#13133](https://github.com/microsoft/vscode-cpptools/issues/13133) +* IntelliSense parser updates. ### Bug Fixes * Fix an invalid IntelliSense error with C++23 escape sequences. [#13338](https://github.com/microsoft/vscode-cpptools/issues/13338) diff --git a/Extension/package.json b/Extension/package.json index 7ebbf3966..e5d18a6d6 100644 --- a/Extension/package.json +++ b/Extension/package.json @@ -2,7 +2,7 @@ "name": "cpptools", "displayName": "C/C++", "description": "C/C++ IntelliSense, debugging, and code browsing.", - "version": "1.26.0-main", + "version": "1.26.1-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",