exact:
の場合のコメントが /// It allows you to specify the minimum version you require, allows updates that include bug fixes /// and backward-compatible feature updates, but requires you to explicitly update to a new major version of the dependency.
↑マイナーバージョンは固定しないように見えるんだけど、 コメントが間違ってるのか、それともexactがこう変わった(元から?)んだろうか? (edited)@available(_PackageDescription, deprecated: 5.6, message: "use specific requirement APIs instead (e.g. use 'branch:' instead of '.branch')") public static func package( url: String, _ requirement: Package.Dependency.Requirement )
(edited).upToNextMajor
→ from:
(前からあった) .branch
→ branch:
.revision
→ revision:
の対応があるんだけど、 .upToNextMinor
の対応が存在しなくて、コメントからするとそれが exact:
に見える で .exact
の対応してそうな exact:
は消えた?