-
Notifications
You must be signed in to change notification settings - Fork 161
Open
Description
Since Fastlane moved to using xcodes for version selection and install, we've lost the ability to be more flexible in the versions we select. For instance, attempting to select version 26.0 when 26.0.1 is installed will fail. I'd like to suggest one of three improvements:
- Automatically allow any patch version when selecting an Xcode minor version. e.g.
26.0would match26.0.2but not26.1. - Like 1, but require a version level match. e.g.
26.0.0would match the latest patch version, but26.0would still require a specific version. - Match the previous Ruby tool behavior and allow the use of the
~>operator with a provided version. e.g.~> 26would match the latest major version available,~> 26.0would match the latest minor version available, and~> 26.0.0would match the latest patch version of 26.0.
This would allow CI to remain within a supported version range without an explicit update.
emilien-hg and Nonouf
Metadata
Metadata
Assignees
Labels
No labels