@@ -38,13 +38,13 @@ Default parameters use the `CHANGELOG.md` file in the current directory, this ca
3838The ` fmt ` command parses and formats the changelog file to adhere to the keep a changelog format.
3939
4040``` shell
41- changelog-parser fmt
41+ chlog fmt
4242```
4343
4444This command exits with a non-zero status code if the changelog format is invalid.
4545
4646``` shell
47- changelog-parser fmt --silent || echo " Invalid changelog format"
47+ chlog fmt --silent || echo " Invalid changelog format"
4848```
4949
5050Changes can be written back to the file with the ` --write ` flag.
@@ -54,7 +54,7 @@ Changes can be written back to the file with the `--write` flag.
5454The ` init ` command initializes a new changelog file.
5555
5656``` shell
57- changelog-parser init
57+ chlog init
5858```
5959
6060This command creates a new changelog file with the following content:
@@ -82,8 +82,8 @@ This example uses default values, but title, description, url, and initial relea
8282The ` add ` command adds a new change to the changelog file.
8383
8484``` shell
85- changelog-parser add --type added " New feature"
86- changelog-parser add --type security " Fix security issue"
85+ chlog add --type added " New feature"
86+ chlog add --type security " Fix security issue"
8787```
8888
8989Those commands add the following content to the changelog file:
@@ -103,7 +103,7 @@ Those commands add the following content to the changelog file:
103103The ` release ` command adds a new release to the changelog file.
104104
105105``` shell
106- changelog-parser release 1.0.0
106+ chlog release 1.0.0
107107```
108108
109109This command adds the following content to the changelog file:
@@ -131,7 +131,7 @@ A date can be specified with the `--date` flag.
131131The ` list ` command lists all releases in the changelog file.
132132
133133``` shell
134- changelog-parser list
134+ chlog list
135135```
136136
137137This command prints the following content:
@@ -146,7 +146,7 @@ This command prints the following content:
146146The ` show ` command shows all changes in a release.
147147
148148``` shell
149- changelog-parser show 1.0.0
149+ chlog show 1.0.0
150150```
151151
152152This command prints the following content:
@@ -168,7 +168,7 @@ This command prints the following content:
168168The ` merge ` command merges two (or more) changelog files.
169169
170170``` shell
171- changelog-parser merge other/CHANGELOG.md
171+ chlog merge other/CHANGELOG.md
172172```
173173
174174This command merges the content from ` other/CHANGELOG.md ` latest release into the current changelog file.
0 commit comments