renovate/lib/manager/swift
2020-03-17 12:15:22 +01:00
..
__fixtures__ refactor(test): move manager tests to lib (#5300) 2020-02-05 01:14:31 +01:00
__snapshots__ feat: Centralize extracted version validation (#5637) 2020-03-04 15:16:36 +01:00
extract.ts chore(internal): disallow implicit braces (#5730) 2020-03-17 12:15:22 +01:00
index.spec.ts feat: Centralize extracted version validation (#5637) 2020-03-04 15:16:36 +01:00
index.ts feat: versionScheme -> versioning (#5504) 2020-02-18 08:34:10 +01:00
readme.md docs: move manager docs out of config options (#5410) 2020-02-25 06:45:00 +01:00
update.ts refactor(function): Update Dependency Function (#5146) 2020-02-06 13:01:21 +00:00

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

Examples:

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"