Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release activities for 2.0.0 #1329

Merged
merged 4 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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=swiftlang.vscode-swift)!
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we follow the "The Swift Programming Language" at the top of https://github.com/swiftlang or just simply "swiftlang" (all lowercase)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thoughts?

Suggested change
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)!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've adjusted the wording based on both pieces of feedback. Let me know if it sounds good!

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
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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"
Expand Down
Loading