You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ dart bin/cider.dart bump --help
Bump project version
Usage: cider bump [arguments]
-h, --help Print this usage information.
--[no-]keep-build Keep the existing build
--[no-]bump-build Also bump the build
--build Sets the build to the given value
(defaults to "")
--pre Sets the pre-release to the given value
(defaults to "")
Run "cider help" to see global options.
Wanted behaviour
$ dart bin/cider.dart bump --help
Bump project version
Usage: cider bump <subcommand> [arguments]
-h, --help Print this usage information.
Available subcommands:
breaking Bump the breaking version
build Bump the build version
major Bump the major version
minor Bump the minor version
patch Bump the patch version
pre Bump the pre-release version
release Bump the release version
Run "cider help" to see global options.
$ dart bin/cider.dart bump breaking --help
Bump the breaking version
Usage: cider bump breaking [arguments]
-h, --help Print this usage information.
--[no-]keep-build Keep the existing build
--[no-]bump-build Also bump the build
--build Sets the build to the given value
(defaults to "")
--pre Sets the pre-release to the given value
(defaults to "")
Run "cider help" to see global options.
The text was updated successfully, but these errors were encountered:
marvin-kolja
changed the title
bump and log are not subcommandsbump and log have no subcommands
Jan 18, 2024
Description
Currently,
cider bump <part>
andcider log <type>
are not subcommands. Thus, something likecider bump --help
doesn't print the correct information.You can take a look at how the change looks like here: marvin-kolja@473acd1
Current Behaviour
Wanted behaviour
The text was updated successfully, but these errors were encountered: