You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This field is an alternative to the tag field (so it should be an error to specify both of them).
This field should support more flexible version matching of tags while the tag field supports tags exactly. With version, it should be possible to specify the following:
version = "latest"# uses exactly the latest versionversion = "13.0.0"# matches both tags 'v13.0.0' and '13.0.0' so you don't need to know the naming scheme of a particular repositoryversion = "13"# should automatically download the latest minor version matching '13.*.*'
I think regex is also a good option to solve this issue. I'm starting to lean towards adding the regex crate more and more since #50 and #116 probably would also benefit from this.
Maybe we can use wildmatch as suggested before? And if this is not enough, we can use regex instead. I believe, with wildmatch is should be possible to write 13.*.* and it should match what we want. It doesn't check as substring so it'll actually check from the beginning which is what we want (if I correctly understand the docs but this can be double-checked in the code).
This field is an alternative to the
tag
field (so it should be an error to specify both of them).This field should support more flexible version matching of tags while the
tag
field supports tags exactly. Withversion,
it should be possible to specify the following:See the following issue for more context:
The text was updated successfully, but these errors were encountered: