From ee85d3df4434f0e691b48e85722da2355e761964 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 24 Sep 2024 16:09:19 -0700 Subject: [PATCH 1/3] Update changelog for 1.22.5. --- Extension/CHANGELOG.md | 9 +++++++++ Extension/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 306b7c572..a6c4fb093 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,14 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.22.5: September 24, 2024 +### Enhancement +* Add the database path to `C/C++: Log Diagnostics` output. + +### Bug Fixes +* Fix some synchronization and crash issues with `handle_edits`. +* Fix usage of `#cpp` with Copilot chat. +* Fix some document buffer issues. + ## Version 1.22.4: September 19, 2024 ### Enhancements * Performance improvements related to how custom configurations are processed. [#12632](https://github.com/microsoft/vscode-cpptools/issues/12632) diff --git a/Extension/package.json b/Extension/package.json index 2e5b7e4e7..8d8395e3f 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.22.4-main", + "version": "1.22.5-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", From a27d6f543cd3deb6466d9234f61abd3207d0d011 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 24 Sep 2024 16:10:25 -0700 Subject: [PATCH 2/3] Fix wording. --- Extension/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index a6c4fb093..6d1387724 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -2,7 +2,7 @@ ## Version 1.22.5: September 24, 2024 ### Enhancement -* Add the database path to `C/C++: Log Diagnostics` output. +* Add the database path to the `C/C++: Log Diagnostics` output. ### Bug Fixes * Fix some synchronization and crash issues with `handle_edits`. From 42367214f48656845e2e5f98aac69c1c3948214f Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 24 Sep 2024 16:12:33 -0700 Subject: [PATCH 3/3] Add links. --- Extension/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 6d1387724..a2a5cc18d 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -5,8 +5,8 @@ * Add the database path to the `C/C++: Log Diagnostics` output. ### Bug Fixes -* Fix some synchronization and crash issues with `handle_edits`. -* Fix usage of `#cpp` with Copilot chat. +* Fix some synchronization and crash issues with `handle_edits`. [#12747](https://github.com/microsoft/vscode-cpptools/issues/12747) +* Fix usage of `#cpp` with Copilot chat. [PR #12755](https://github.com/microsoft/vscode-cpptools/pull/12755) * Fix some document buffer issues. ## Version 1.22.4: September 19, 2024