-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Allow for .package(url: String, revision: String) syntax #3310
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
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1c529cd
Allow for .package(url: String, revision: String)
a108314
Needed PR number
ef5356e
Remove, now present
8044eed
Merge branch 'main' into revision
miggs597 0866e47
Pass for new feature
f68e9bb
Moved test into appropriate file
68cd101
Fixed typo
8b8511f
Another typo fix
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -81,7 +81,24 @@ extension Package.Dependency { | |
| ) -> Package.Dependency { | ||
| return .init(name: name, url: url, requirement: .branch(branch)) | ||
| } | ||
|
|
||
|
|
||
| /// Adds a remote package dependency given a branch requirement. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this say revision?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this still say "branch" ^^ |
||
| /// | ||
| /// .package(url: "https://example.com/example-package.git", revision: "aa681bd6c61e22df0fd808044a886fc4a7ed3a65"), | ||
| /// | ||
| /// - Parameters: | ||
| /// - name: The name of the package, or nil to deduce it from the URL. | ||
| /// - url: The valid Git URL of the package. | ||
| /// - revision: A dependency requirement. See static methods on `Package.Dependency.Requirement` for available options. | ||
|
tomerd marked this conversation as resolved.
|
||
| @available(_PackageDescription, introduced: 999.0) | ||
| public static func package( | ||
| name: String? = nil, | ||
| url: String, | ||
| revision: String | ||
| ) -> Package.Dependency { | ||
| return .init(name: name, url: url, requirement: .revision(revision)) | ||
| } | ||
|
|
||
| /// Adds a remote package dependency given a version requirement. | ||
| /// | ||
| /// - Parameters: | ||
|
|
@@ -266,11 +283,6 @@ extension Package.Dependency { | |
| fatalError() | ||
| } | ||
|
|
||
| @available(*, unavailable, message: "use package(url:_:) with the .revision(String) initializer instead") | ||
| public static func package(url: String, revision: String) -> Package.Dependency { | ||
| fatalError() | ||
| } | ||
|
|
||
| @available(*, unavailable, message: "use package(url:_:) without the range label instead") | ||
| public static func package(url: String, range: Range<Version>) -> Package.Dependency { | ||
| fatalError() | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this say revision?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah you're right, thanks for catching that