We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 202c1f4 commit 7463656Copy full SHA for 7463656
1 file changed
changelog_cli/README.md
@@ -35,11 +35,22 @@ brew install changelog_cli
35
36
## Usage
37
38
+Get usage information:
39
+
40
+```sh
41
+changelog_cli generate --help
42
+```
43
44
+Generate a changelog:
45
46
```sh
47
changelog_cli generate
48
-# or
49
+# or more elaborate
50
changelog_cli generate --path ~/Projects/my-app --start 1.0.0 --end 1.1.0 --version 1.1.0 --limit 2000 --printer markdown
51
52
+# or with custom formatting
53
+changelog_cli generate --path packages/something --start $CM_PREVIOUS_COMMIT --version "Version $BUILD_VERSION ($PROJECT_BUILD_NUMBER)" --printer slack-markdown --group-by date-asc --date-format-locale en_US --date-format yyyy-MM-dd
54
```
55
56
You can get the previous tag using git command and then pass it to `changelog_cli`:
0 commit comments