Skip to content

Mark Platform.openbsd as available since 5.6 #3970

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

Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ Note: This is in reverse chronological order, so newer entries are added to the

Swift 5.6
-----------
* `openbsd` has been added to the set of possible platform values for packages that specify a 5.6 tools version.

* [#3649]

Semantic version dependencies can now be resolved against Git tag names that contain only major and minor version identifiers. A tag with the form `X.Y` will be treated as `X.Y.0`. This improves compatibility with existing repositories.
Expand Down
2 changes: 1 addition & 1 deletion Sources/PackageDescription/SupportedPlatforms.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public struct Platform: Encodable, Equatable {
public static let wasi: Platform = Platform(name: "wasi")

/// The OpenBSD platform.
@available(_PackageDescription, introduced: 999.0)
@available(_PackageDescription, introduced: 5.6)
public static let openbsd: Platform = Platform(name: "openbsd")
}

Expand Down