mirror of https://github.com/renovatebot/renovate
eb8c08079e
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> |
||
---|---|---|
.. | ||
__fixtures__ | ||
__snapshots__ | ||
extract.ts | ||
index.spec.ts | ||
index.ts | ||
range.spec.ts | ||
range.ts | ||
readme.md | ||
types.ts |
readme.md
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"