Skip to content

Commit

Permalink
fix: Correct cli_tests failure
Browse files Browse the repository at this point in the history
I'd forgotten to update the CLI help text in `docs/reference.md`, which
was causing this test to failure. This commit updates the text to match
what the CLI outputs now.

Signed-off-by: Andrew Lilley Brinker <[email protected]>
  • Loading branch information
alilleybrinker committed Jun 18, 2024
1 parent 1b39f9a commit 0e2baa0
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,38 +27,38 @@ Arguments:
values: major, minor, patch, release, rc, beta, alpha]

Options:
--manifest-path <PATH> Path to Cargo.toml
-p, --package <SPEC> Package to process (see `cargo help pkgid`)
--workspace Process all packages in the workspace
--exclude <SPEC> Exclude packages from being processed
--unpublished Process all packages whose current version is unpublished
-m, --metadata <METADATA> Semver metadata
-x, --execute Actually perform a release. Dry-run mode is the default
--no-confirm Skip release confirmation and version preview
--prev-tag-name <NAME> The name of tag for the previous release
-c, --config <PATH> Custom config file
--isolated Ignore implicit configuration files
--sign Sign both git commit and tag
--dependent-version <ACTION> Specify how workspace dependencies on this crate should be
handed [possible values: upgrade, fix]
--allow-branch <GLOB[,...]> Comma-separated globs of branch names a release can happen from
-q, --quiet... Pass many times for less log output
-v, --verbose... Pass many times for more log output
-h, --help Print help (see more with '--help')
-V, --version Print version
--manifest-path <PATH> Path to Cargo.toml
-p, --package <SPEC> Package to process (see `cargo help pkgid`)
--workspace Process all packages in the workspace
--exclude <SPEC> Exclude packages from being processed
--unpublished Process all packages whose current version is unpublished
-m, --metadata <METADATA> Semver metadata
-x, --execute Actually perform a release. Dry-run mode is the default
--no-confirm Skip release confirmation and version preview
--prev-tag-name <NAME> The name of tag for the previous release
-c, --config <PATH> Custom config file
--isolated Ignore implicit configuration files
--sign Sign both git commit and tag
--dependent-version <ACTION> Specify how workspace dependencies on this crate should be
handed [possible values: upgrade, fix]
--allow-branch <GLOB[,...]> Comma-separated globs of branch names a release can happen from
--certs-source <CERTS_SOURCE> Indicate what certificate store to use for web requests
[possible values: webpki, native]
-q, --quiet... Pass many times for less log output
-v, --verbose... Pass many times for more log output
-h, --help Print help (see more with '--help')
-V, --version Print version

Commit:
--sign-commit Sign git commit

Publish:
--no-publish Do not run cargo publish on release
--registry <NAME> Cargo registry to upload to
--no-verify Don't verify the contents by building them
--features <FEATURES> Provide a set of features that need to be enabled
--all-features Enable all features via `all-features`. Overrides `features`
--target <TRIPLE> Build for the target triple
--certs-source <CERTS> Select what certificates to use (default: 'webpki') [possible values:
webpki, native]
--no-publish Do not run cargo publish on release
--registry <NAME> Cargo registry to upload to
--no-verify Don't verify the contents by building them
--features <FEATURES> Provide a set of features that need to be enabled
--all-features Enable all features via `all-features`. Overrides `features`
--target <TRIPLE> Build for the target triple

Tag:
--no-tag Do not create git tag
Expand Down

0 comments on commit 0e2baa0

Please sign in to comment.