A .NET CLI tool (with interactive support) to manage versioning and changelogs with a focus on multi-package repositories.
Key features include:
- Generates
CHANGELOG.mdin unified form - Calculates new version of module based on:
- changes in current module
- changes in all dependent modules
- Publishes packages into NuGet artifactory
This .NET implementation is port from original npm implementation @changesets/cli
(GitHub repository).
Usage:
changeset [OPTIONS] [COMMAND]
Options:
-h, --helpPrints help information-v, --versionPrints version information
Commands:
initSets up the .changeset folder and generates a default config file. You should run this command once when you are setting up changesetsaddUsed by contributors to add information about their changes by creating changeset filesversionTakes existing changeset files and updates versions and dependencies of packages, as well as writing changelogspublishThis publishes changes to specified nuget repositorystatusProvides information about the changesets that currently exist. If there are no changesets present, it exits with an error status code
You can find the Roadmap here.
You can find the Contribution Guidelines here.
Install tool by running dotnet tool install:
dotnet tool install solarwinds.changesets --globalUpdate tool by running dotnet tool update:
dotnet tool update solarwinds.changesets --globalUninstall tool by running dotnet tool uninstall:
dotnet tool uninstall solarwinds.changesets --global