renovate/lib/modules/manager/swift
Rhys Arkins cc33d34ca8
refactor: PackageFile types (#20498)
Co-authored-by: RahulGautamSingh <rahultesnik@gmail.com>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2023-02-20 14:58:49 +00:00
..
__fixtures__ feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
__snapshots__ refactor: PackageFile types (#20498) 2023-02-20 14:58:49 +00:00
extract.ts refactor: PackageFile types (#20498) 2023-02-20 14:58:49 +00:00
index.spec.ts feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
index.ts fix(swift): pinDigests=false (#17862) 2022-09-19 15:09:33 +02:00
readme.md feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
types.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00

Anything other than .exact(<...>) or exact:<...> will be treated as range with respect to Swift specific. Because of this, some PR descriptions will look like from: <...> => <...>.

Examples:

package(name: "<...>", .exact("1.2.3"))   // => 1.2.3
package(name: "<...>", exact: "1.2.3")    // => 1.2.3
package(name: "<...>", from: "1.2.3")     // => from: "2.0.0"
package(name: "<...>", "1.2.3"...)        // => "2.0.0"...
package(name: "<...>", "1.2.3"..."1.3.0") // => "1.2.3"..."2.0.0"
package(name: "<...>", "1.2.3"..<"1.3.0") // => "1.2.3"..<"2.0.0"
package(name: "<...>", ..."1.2.3")        // => ..."2.0.0"
package(name: "<...>", ..<"1.2.3")        // => ..<"2.0.0"