vump
v0.11.0
Published
CLI tool to bump your CHANGES.md, following semver
Downloads
6
Readme
vump
CLI tool to manage your CHANGES.md, following semver.
Usage
$ npm install -g vump
$ vump COMMAND
running command...
$ vump (-v|--version|version)
vump/0.10.0 darwin-x64 node-v8.10.0
$ vump --help [COMMAND]
USAGE
$ vump COMMAND
...Commands
vump help [COMMAND]
display help for vump
USAGE
$ vump help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLISee code: @oclif/plugin-help
vump latest
Show the latest version of CHANGES.md in the current directory
USAGE
$ vump latest
OPTIONS
-h, --help show CLI help
EXAMPLE
$ vump latest
0.1.0See code: src/commands/latest.ts
vump list
Recursively list all the CHANGES.md
USAGE
$ vump list
OPTIONS
-h, --help show CLI help
EXAMPLE
$ vump list
examples/CHANGES.md
examples/services/a/CHANGES.mdSee code: src/commands/list.ts
vump next
Show all changes in Next section
USAGE
$ vump next
OPTIONS
-f, --format=markdown|slack [default: markdown] Specify output format
-h, --help show CLI help
-o, --only Only show the changes that are included in given version
EXAMPLE
$ vump next
## examples/CHANGES.md
- Feature: This is an example
## examples/services/a/CHANGES.md
(no changes)See code: src/commands/next.ts
vump show VERSION
Show previous changes in the given section
USAGE
$ vump show VERSION
OPTIONS
-f, --format=markdown|slack [default: markdown] Specify output format
-h, --help show CLI help
-o, --only Only show the changes that are included in given version
EXAMPLE
$ vump show 0.1.0
## examples/CHANGES.md
- Feature: This is an example
## examples/services/a/CHANGES.md
(no changes)See code: src/commands/show.ts
vump to VERSION
Bump to the given version
USAGE
$ vump to VERSION
OPTIONS
-h, --help show CLI help
EXAMPLE
$ vump to 0.1.0See code: src/commands/to.ts
