From 357b9779dd8fb2fc2c38ef7b3ef97fe5608f7477 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Fri, 17 Apr 2026 17:34:40 -0700 Subject: [PATCH 1/2] Update changelog for 1.32.1. --- Extension/CHANGELOG.md | 8 ++++++++ Extension/package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index fe483aa03..679d1d711 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,13 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.32.1: April 20, 2026 +### Bug Fixes +* Fix an IntelliSense crash when three special case comments were used in a template. [#14360](https://github.com/microsoft/vscode-cpptools/issues/14360) +* Fix `Reinstalling the Extension.md` not being found. [#14389](https://github.com/microsoft/vscode-cpptools/issues/14389) +* Fix the `C/C++ DevTools` extension language service tools not working after the `C/C++` extension updates via `Restart Extensions`. [#14392](https://github.com/microsoft/vscode-cpptools/issues/14392) +* Fix clang-tidy error `Error: no checks enabled.` if checks are not set in another way. [#14391](https://github.com/microsoft/vscode-cpptools/issues/14391) +* Update localized strings. + ## Version 1.32.0: April 14, 2026 ### New Feature * Add support for run without debugging. [#1201](https://github.com/microsoft/vscode-cpptools/issues/1201) diff --git a/Extension/package.json b/Extension/package.json index 8f2cca3f5..e9eca52aa 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.32.0-main", + "version": "1.32.1-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", From 57a91ac286e7abbf6838301e2cde0a15b839289f Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Fri, 17 Apr 2026 17:38:08 -0700 Subject: [PATCH 2/2] Wording update. --- Extension/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 679d1d711..de00517c6 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -2,10 +2,10 @@ ## Version 1.32.1: April 20, 2026 ### Bug Fixes -* Fix an IntelliSense crash when three special case comments were used in a template. [#14360](https://github.com/microsoft/vscode-cpptools/issues/14360) +* Fix an IntelliSense crash when three special-case comments are used in a template. [#14360](https://github.com/microsoft/vscode-cpptools/issues/14360) * Fix `Reinstalling the Extension.md` not being found. [#14389](https://github.com/microsoft/vscode-cpptools/issues/14389) * Fix the `C/C++ DevTools` extension language service tools not working after the `C/C++` extension updates via `Restart Extensions`. [#14392](https://github.com/microsoft/vscode-cpptools/issues/14392) -* Fix clang-tidy error `Error: no checks enabled.` if checks are not set in another way. [#14391](https://github.com/microsoft/vscode-cpptools/issues/14391) +* Fix the clang-tidy error `Error: no checks enabled.` when checks are not otherwise set. [#14391](https://github.com/microsoft/vscode-cpptools/issues/14391) * Update localized strings. ## Version 1.32.0: April 14, 2026