From 1c2ad8ee4249f25f547438a7ad3795145254e7a1 Mon Sep 17 00:00:00 2001 From: Matthew Bastien Date: Thu, 23 Jan 2025 11:50:19 -0500 Subject: [PATCH 1/4] release activities for 2.0.0 --- CHANGELOG.md | 17 +++++++++++++++++ package.json | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2549f025c..7d69908f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 2.0.0 - 2025-01-28 + +The Swift extension for VS Code has officially moved to the [SwiftLang organization in the VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=ms-swiftlang.vscode-swift)! +The new extension id is `swiftlang.vscode-swift`. + +### Added + +- Permissions for plugin tasks can now be configured with the `swift.pluginPermissions` setting ([#1297](https://github.com/swiftlang/vscode-swift/pull/1297)) +- Add support for the `--swift-sdk` SwiftPM option ([#1191](https://github.com/swiftlang/vscode-swift/pull/1191)) +- Improve documentation around disabling SourceKit-LSP as to what features it will impact ([#1308](https://github.com/swiftlang/vscode-swift/pull/1308)) +- The extension will now detect when a new Xcode has been selected on macOS ([#1244](https://github.com/swiftlang/vscode-swift/pull/1244)) +- Builds will now show a `Preparing` notification when launched before progress is available ([#1323](https://github.com/swiftlang/vscode-swift/pull/1323)) + +### Fixed + +- Dependencies downloaded from a registry will now display properly in the dependencies view ([#1311](https://github.com/swiftlang/vscode-swift/pull/1311)) + ## 1.11.4 - 2024-12-06 ### Added diff --git a/package.json b/package.json index b48b0f065..79804e955 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-swift", "displayName": "Swift", "description": "Swift Language Support for Visual Studio Code.", - "version": "1.11.4", + "version": "2.0.0", "publisher": "swiftlang", "icon": "icon.png", "repository": { @@ -1386,7 +1386,7 @@ "coverage": "npm test -- --coverage", "compile-tests": "del-cli ./assets/test/**/.build && npm run compile", "package": "vsce package", - "dev-package": "vsce package --no-update-package-json 1.12.0-dev", + "dev-package": "vsce package --no-update-package-json 2.0.0-dev", "preview-package": "vsce package --pre-release", "tag": "./scripts/tag_release.sh $npm_package_version", "contributors": "./scripts/generate_contributors_list.sh" From 3191ff9f153fd5f70f206ff2ecbbbdb0e5635fbe Mon Sep 17 00:00:00 2001 From: Matthew Bastien Date: Thu, 23 Jan 2025 13:35:50 -0500 Subject: [PATCH 2/4] remove "ms-" from in front of the extension id (oops) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d69908f4..fc331a866 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 2.0.0 - 2025-01-28 -The Swift extension for VS Code has officially moved to the [SwiftLang organization in the VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=ms-swiftlang.vscode-swift)! +The Swift extension for VS Code has officially moved to the [SwiftLang organization in the VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=swiftlang.vscode-swift)! The new extension id is `swiftlang.vscode-swift`. ### Added From 2aa20a1e69f87c644f285938ca848b8a407678db Mon Sep 17 00:00:00 2001 From: Matthew Bastien Date: Thu, 23 Jan 2025 16:00:10 -0500 Subject: [PATCH 3/4] bump dev version number Co-authored-by: Tim Condon <0xTim@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 79804e955..8194847ac 100644 --- a/package.json +++ b/package.json @@ -1386,7 +1386,7 @@ "coverage": "npm test -- --coverage", "compile-tests": "del-cli ./assets/test/**/.build && npm run compile", "package": "vsce package", - "dev-package": "vsce package --no-update-package-json 2.0.0-dev", + "dev-package": "vsce package --no-update-package-json 2.0.1-dev", "preview-package": "vsce package --pre-release", "tag": "./scripts/tag_release.sh $npm_package_version", "contributors": "./scripts/generate_contributors_list.sh" From cbb638d1264f270bfe28d17d080fd9bcb5f634a6 Mon Sep 17 00:00:00 2001 From: Matthew Bastien Date: Thu, 23 Jan 2025 16:03:23 -0500 Subject: [PATCH 4/4] address review comments in change log --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc331a866..96cbbf8c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 2.0.0 - 2025-01-28 -The Swift extension for VS Code has officially moved to the [SwiftLang organization in the VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=swiftlang.vscode-swift)! +The Swift extension for VS Code has moved to the [official swiftlang organization in the VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=swiftlang.vscode-swift)! The new extension id is `swiftlang.vscode-swift`. ### Added @@ -10,7 +10,7 @@ The new extension id is `swiftlang.vscode-swift`. - Permissions for plugin tasks can now be configured with the `swift.pluginPermissions` setting ([#1297](https://github.com/swiftlang/vscode-swift/pull/1297)) - Add support for the `--swift-sdk` SwiftPM option ([#1191](https://github.com/swiftlang/vscode-swift/pull/1191)) - Improve documentation around disabling SourceKit-LSP as to what features it will impact ([#1308](https://github.com/swiftlang/vscode-swift/pull/1308)) -- The extension will now detect when a new Xcode has been selected on macOS ([#1244](https://github.com/swiftlang/vscode-swift/pull/1244)) +- The extension will now detect when xcode-select has been used to select a different Xcode toolchain on macOS ([#1244](https://github.com/swiftlang/vscode-swift/pull/1244)) - Builds will now show a `Preparing` notification when launched before progress is available ([#1323](https://github.com/swiftlang/vscode-swift/pull/1323)) ### Fixed