-
Notifications
You must be signed in to change notification settings - Fork 35
Description
Is your feature request related to a problem? Please describe.
Currently the Package.swift has an exact version requirement on the 2.46.1 of the amplify-swift SDK:
amplify-ui-swift-liveness/Package.swift
Line 16 in 3affdd1
.package(url: "https://github.com/aws-amplify/amplify-swift", exact: "2.46.1") |
But the latest version of the amplify-swift SDK is 2.48.1.
With the current setup, we are unable to use both this library and the latest version of amplify-swift.
Describe the solution you'd like
amplify-ui-swift-liveness should follow best practices by remaining flexible and offering support up until the next major version. Assuming that both SDKs adhere to semantic versioning practices correctly, this would not cause any problems because no minor or patch releases of amplify-swift would contain any breaking changes.
- .package(url: "https://github.com/aws-amplify/amplify-swift", exact: "2.46.1")
+ .package(url: "https://github.com/aws-amplify/amplify-swift", from: "2.46.1")
Should this SDK need a specific new change from a future version of amplify-swift, it should just bump the minimum version defined in from
to account for this.
Describe alternatives you've considered
The alternatives are forking, but this isn't a practical long-term solution
Additional context
No response