changesette 2.0.1

A version and changelog manager for single-package applications, using the changesets file format
1
2
3
4
5
6
7
8
9
10
11
/// The `add` subcommand: create a changeset.
pub(crate) mod add;
/// The `changelog` subcommand: print a version section from CHANGELOG.md.
pub(crate) mod changelog;
/// The `current` subcommand: print the current version from package.json.
pub(crate) mod current;
/// The `init` subcommand: create the changeset directory.
pub(crate) mod init;
/// The `version` subcommand: consume changesets, bump the package version,
/// and update CHANGELOG.md.
pub(crate) mod version;