From 139450a866fa9a6904a150abc02cbbd6c00e1a79 Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Mon, 21 Feb 2022 06:40:03 -0300 Subject: [PATCH] standard-version: add page (#7753) --- pages/common/standard-version.md | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/standard-version.md diff --git a/pages/common/standard-version.md b/pages/common/standard-version.md new file mode 100644 index 000000000..77b8c9241 --- /dev/null +++ b/pages/common/standard-version.md @@ -0,0 +1,36 @@ +# standard-version + +> Automate versioning and changelog generation, with SemVer and Conventional Commits. +> More information: . + +- Update the changelog file and tag a release: + +`standard-version` + +- Tag a release without bumping the version: + +`standard-version --first-release` + +- Update the changelog and tag an alpha release: + +`standard-version --prerelease alpha` + +- Update the changelog and tag a specific release type: + +`standard-version --release-as {{major|minor|patch}}` + +- Tag a release, preventing hooks from being verified during the commit step: + +`standard-version --no-verify` + +- Tag a release committing all staged changes, not just files affected by `standard-version`: + +`standard-version --commit-all` + +- Update a specific changelog file and tag a release: + +`standard-version --infile {{path/to/file.md}}` + +- Display the release that would be performed without performing them: + +`standard-version --dry-run`