Version range, specified as a string scalar, character vector, or matlab.mpm.Version object. This option limits the output to only packages
whose Version property is within the specified version range.
Version syntax follows the Semantic
Versioning 2.0.0 format: <major
version>.<minor
version>.<patch version>,
where each version number must be a nonnegative integer, for example
1.2.3. You can optionally specify a pre-release version by adding
-<pre-release version> to the end
of the version, for example 1.2.3-alpha. Optionally specify a build
version by adding +<build
version>.
Specify a range of versions by including the <,
<=, >, or >= operators in
front of a version number. For example, >2.1.13 specifies all
versions greater than 2.1.13. Specify more than one range separated
by white space to further limit matches. For example, >2.1.13
<=2.1.15 includes versions 2.1.14 and
2.1.15, but not 2.1.13 or
2.1.16. Use the || operator to designate
multiple acceptable version ranges. For example, <2.1.13 ||
>2.1.15 includes versions less than 2.1.13 and greater
than 2.1.15, but not 2.1.14.
Example:
VersionRange="1.2.3"
Example:
VersionRange="1.2.3-alpha"
Example:
VersionRange="1.2.3-alpha+exp"
Example:
VersionRange=">2.1.13"
Example:
VersionRange=">2.1.13 <=2.1.15"
Example:
VersionRange="<2.1.13 || >2.1.15"