Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 1.21 KB

version-range.md

File metadata and controls

58 lines (49 loc) · 1.21 KB

Version Range Setting

Setting changelog:versionRange
Environment Variable CHANGELOG__VERSIONRANGE
Commandline Parameter versionRange
Default value -
Version Support 0.1+

By default, all versions are included in the change log. To limit the versions to include, you can specify a version range using this setting.

The value must be a valid NuGet Version Range

Example

To only include versions newer than version 2.1 in the change log, use the following version range:

{
    "changelog" : {
        "versionRange" : "[2.1, )"
    }
}

See Also