From 61d1a1c52fb1884c7d53d92fbad753d17fd41a08 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 15 Jan 2025 15:07:46 -0800 Subject: [PATCH 1/2] Update changelog and version for 1.23.4. --- Extension/CHANGELOG.md | 13 +++++++++---- Extension/package.json | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index dbf651f47..68dea1e55 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,12 +1,17 @@ # C/C++ for Visual Studio Code Changelog -## Version 1.23.3: January 9, 2025 -### New Feature -* Enable setting multiple compile commands. [#7029](https://github.com/microsoft/vscode-cpptools/issues/7029) - * Thank you for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #12960](https://github.com/microsoft/vscode-cpptools/pull/12960) +## Version 1.23.3: January 16, 2025 +### Bug Fixes +* Fix a couple bugs with `.editorConfig` handling. [PR #13140](https://github.com/microsoft/vscode-cpptools/pull/13140) +* Fix a bug when processing a file with invalid multi-byte sequences. [#13150](https://github.com/microsoft/vscode-cpptools/issues/13150) +* Fix a crash when Copilot hover is used on code with no definition file (e.g. literals). +* Fix `libiconv.dll` not being signed on Windows. +## Version 1.23.3: January 9, 2025 ### Enhancements * Modifications to the snippet completions to more closely match the snippets provided by TypeScript. [#4482](https://github.com/microsoft/vscode-cpptools/issues/4482) +* Enable setting multiple compile commands. [#7029](https://github.com/microsoft/vscode-cpptools/issues/7029) + * Thank you for the contribution. [@yiftahw](https://github.com/yiftahw) [PR #12960](https://github.com/microsoft/vscode-cpptools/pull/12960) * Update clang path setting descriptions. [PR #13071](https://github.com/microsoft/vscode-cpptools/pull/13071) * Update clang-format and clang-tidy from 19.1.5 to 19.1.6. * IntelliSense parser updates. diff --git a/Extension/package.json b/Extension/package.json index 03facfe22..db1fb79e1 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.23.3-main", + "version": "1.23.4-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", From 1010f7ff56da09e6c00eaf9d9f67bcfc26538285 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 15 Jan 2025 15:08:52 -0800 Subject: [PATCH 2/2] Fix version. --- Extension/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 68dea1e55..c2a941a2e 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,6 +1,6 @@ # C/C++ for Visual Studio Code Changelog -## Version 1.23.3: January 16, 2025 +## Version 1.23.4: January 16, 2025 ### Bug Fixes * Fix a couple bugs with `.editorConfig` handling. [PR #13140](https://github.com/microsoft/vscode-cpptools/pull/13140) * Fix a bug when processing a file with invalid multi-byte sequences. [#13150](https://github.com/microsoft/vscode-cpptools/issues/13150)