From 8942b4521b18021c985bea657d8da828c7867125 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 24 Sep 2025 14:21:16 -0700 Subject: [PATCH 1/2] Update changelog and version for 1.28.0. --- Extension/CHANGELOG.md | 10 ++++++++++ Extension/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index f9c0df2a7..b6f53683c 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,15 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.28.0: September 25, 2025 +### Enhancements +* Add IntelliSense support for c23 `bool`, `true`, and `false`. [#13737](https://github.com/microsoft/vscode-cpptools/issues/13737) +* Update the bundled `clang-tidy` and `clang-format` from 20.1.7 to 21.1.2. + +### Bug Fixes +* Fix `cpptools` getting stuck when `clang-format` is invoked on a file in a `.clang-format-ignore`. [#13937](https://github.com/microsoft/vscode-cpptools/issues/13937) +* Fix the `C/C++ Properties Schema Reference` link in the configuration UI editor. [#13949](https://github.com/microsoft/vscode-cpptools/issues/13949) +* Fix a `TypeError` with `preReleaseCheck` during activation. [#13953](https://github.com/microsoft/vscode-cpptools/issues/13953) + ## Version 1.27.7: September 18, 2025 ### Enhancements * Show a warning when too many files are processed in a workspace. [#10828](https://github.com/microsoft/vscode-cpptools/issues/10828) diff --git a/Extension/package.json b/Extension/package.json index f5b7eddc3..b9a668062 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.27.7-main", + "version": "1.28.0-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", From 27115f7ed3830d2ee180322d350d8b8c3776633e Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 24 Sep 2025 15:37:52 -0700 Subject: [PATCH 2/2] Update. --- Extension/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index b6f53683c..a870b73ce 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -8,7 +8,7 @@ ### Bug Fixes * Fix `cpptools` getting stuck when `clang-format` is invoked on a file in a `.clang-format-ignore`. [#13937](https://github.com/microsoft/vscode-cpptools/issues/13937) * Fix the `C/C++ Properties Schema Reference` link in the configuration UI editor. [#13949](https://github.com/microsoft/vscode-cpptools/issues/13949) -* Fix a `TypeError` with `preReleaseCheck` during activation. [#13953](https://github.com/microsoft/vscode-cpptools/issues/13953) +* Fix a crash with `preReleaseCheck`. [#13953](https://github.com/microsoft/vscode-cpptools/issues/13953) ## Version 1.27.7: September 18, 2025 ### Enhancements