-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
fix(cli): adapt Package.swift to work on older Swift versions #10687
Conversation
I noticed the plugin build fails on older Swift (tested on macOS 12) because the default minimum required macOS version (10.10 in my case) is older than `v10_13` which is set by the Tauri iOS package (and also swift-rs). So the plugins must explicitly define a minimum macOS version too.
Package Changes Through e6ebfcdThere are 6 changes which include tauri with prerelease, tauri-build with prerelease, tauri-utils with prerelease, tauri-bundler with prerelease, @tauri-apps/cli with prerelease, tauri-cli with prerelease Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
…(#1679) ref tauri-apps/tauri#10687 Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/10459709604 Co-authored-by: lucasfernog <[email protected]>
…(#1679) ref tauri-apps/tauri#10687 Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/10459709604 Co-authored-by: lucasfernog <[email protected]>
…(#1679) ref tauri-apps/tauri#10687 Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/10459709604 Co-authored-by: lucasfernog <[email protected]>
…(#1679) ref tauri-apps/tauri#10687 Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/10459709604 Co-authored-by: lucasfernog <[email protected]>
…(#1679) ref tauri-apps/tauri#10687 Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/10459709604 Co-authored-by: lucasfernog <[email protected]>
…(#1679) ref tauri-apps/tauri#10687 Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/10459709604 Co-authored-by: lucasfernog <[email protected]>
I noticed the plugin build fails on older Swift (tested on macOS 12) because the default minimum required macOS version (10.10 in my case) is older than
v10_13
which is set by the Tauri iOS package (and also swift-rs). So the plugins must explicitly define a minimum macOS version too.