git-changelog-command-line 1.102.0 → 1.104.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,10 +2,16 @@
2
2
 
3
3
  [![Maven Central](https://maven-badges.herokuapp.com/maven-central/se.bjurr.gitchangelog/git-changelog-command-line/badge.svg)](https://maven-badges.herokuapp.com/maven-central/se.bjurr.gitchangelog/git-changelog-command-line)
4
4
  [![NPM](https://img.shields.io/npm/v/git-changelog-command-line.svg?style=flat-square)](https://www.npmjs.com/package/git-changelog-command-line)
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/git-changelog-command-line.svg?style=flat)](https://www.npmjs.com/package/git-changelog-command-line)
6
+ [![Docker Pulls](https://badgen.net/docker/pulls/tomasbjerre/git-changelog-command-line?icon=docker&label=pulls)](https://hub.docker.com/r/tomasbjerre/git-changelog-command-line/)
5
7
 
6
8
  This is a command line tool for generating a changelog, or releasenotes, from a GIT repository. It uses the [Git Changelog Lib](https://github.com/tomasbjerre/git-changelog-lib).
7
9
 
8
- This is a Java application (runnable `jar`) packaged into an `NPM` package for convenience. The runnable `jar` can be found in [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22git-changelog-command-line%22) and used like `java -jar git-changelog-command-line-*.jar ....`. The `npm` package can be found in [NPM](https://www.npmjs.com/package/git-changelog-command-line).
10
+ This is a Java application (runnable `jar`) packaged into an `NPM` package for convenience.
11
+
12
+ - The runnable `jar` can be found in [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22git-changelog-command-line%22) and used like `java -jar git-changelog-command-line-*.jar ....`.
13
+ - The `npm` package can be found in [NPM](https://www.npmjs.com/package/git-changelog-command-line).
14
+ - The `Docker` image can be found in [Dockerhub](https://hub.docker.com/r/tomasbjerre/git-changelog-command-line) and used like `docker run --mount src="$(pwd)",target=/usr/src/git-changelog-command-line,type=bind tomasbjerre/git-changelog-command-line:X --stdout`.
9
15
 
10
16
  ## Example - Simple
11
17
 
@@ -121,14 +127,14 @@ npx git-changelog-command-line \
121
127
 
122
128
  {{#tags}}
123
129
  {{#ifReleaseTag .}}
124
- ## [{{name}}](https://gitlab.com/html-validate/html-validate/compare/{{name}}) ({{tagDate .}})
130
+ ## [{{name}}](https://github.com/tomasbjerre/someproject/compare/{{name}}) ({{tagDate .}})
125
131
 
126
132
  {{#ifContainsType commits type='feat'}}
127
133
  ### Features
128
134
 
129
135
  {{#commits}}
130
136
  {{#ifCommitType . type='feat'}}
131
- - {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://gitlab.com/html-validate/html-validate/commit/{{hashFull}}))
137
+ - {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/tomasbjerre/someproject/commit/{{hashFull}}))
132
138
  {{/ifCommitType}}
133
139
  {{/commits}}
134
140
  {{/ifContainsType}}
@@ -138,7 +144,7 @@ npx git-changelog-command-line \
138
144
 
139
145
  {{#commits}}
140
146
  {{#ifCommitType . type='fix'}}
141
- - {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://gitlab.com/html-validate/html-validate/commit/{{hashFull}}))
147
+ - {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/tomasbjerre/someproject/commit/{{hashFull}}))
142
148
  {{/ifCommitType}}
143
149
  {{/commits}}
144
150
  {{/ifContainsType}}
@@ -148,6 +154,36 @@ npx git-changelog-command-line \
148
154
  "
149
155
  ```
150
156
 
157
+ Or you can prepend to the current changelog. You may get `$nextVersion` from `--print-next-version` and `$highestTag` from `--print-highest-version-tag`. Somehting like this:
158
+
159
+ ```shell
160
+ npx git-changelog-command-line \
161
+ --from-ref $highestTag \
162
+ --to-ref HEAD \
163
+ --prepend-to-file CHANGELOG.md \
164
+ --template-content "
165
+ ## $nextVersion
166
+
167
+ {{#ifContainsType commits type='feat'}}
168
+ ## Features
169
+ {{#commits}}
170
+ {{#ifCommitType . type='feat'}}
171
+ {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/tomasbjerre/someproject/commit/{{hashFull}}))
172
+ {{/ifCommitType}}
173
+ {{/commits}}
174
+ {{/ifContainsType}}
175
+
176
+ {{#ifContainsType commits type='fix'}}
177
+ ## Bug Fixes
178
+ {{#commits}}
179
+ {{#ifCommitType . type='fix'}}
180
+ {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/tomasbjerre/someproject/commit/{{hashFull}}))
181
+ {{/ifCommitType}}
182
+ {{/commits}}
183
+ {{/ifContainsType}}
184
+ "
185
+ ```
186
+
151
187
  ### Example NPM and `package.json`
152
188
 
153
189
  If you are using NPM, you may want to add this to your `package.json`:
@@ -208,243 +244,277 @@ Handlebars.registerHelper('startsWith', function(from, options) {
208
244
  Or from command line:
209
245
 
210
246
  ```shell
211
- -cl, --custom-issue-link <string> Custom issue link. Supports
212
- variables like ${PATTERN_GROUP_1} to
213
- inject variables from pattern.
214
- <string>: any string
215
- Default: null
216
- -cn, --custom-issue-name <string> Custom issue name.
217
- <string>: any string
218
- Default: null
219
- -cp, --custom-issue-pattern <string> Custom issue pattern.
220
- <string>: any string
221
- Default: null
222
- -ct, --custom-issue-title <string> Custom issue title. Supports
223
- variables like ${PATTERN_GROUP_1} to
224
- inject variables from pattern.
225
- <string>: any string
226
- Default: null
227
- -df, --date-format <string> Format to use when printing
228
- dates.
229
- <string>: any string
230
- Default: YYYY-MM-dd HH:mm:ss
231
- -eh, --extended-headers <string> Extended headers that will send
232
- when access JIRA. e.g. -eh CF-Access-
233
- Client-ID:abcde12345xyz.access [Supports Multiple occurrences]
234
- <string>: any string
235
- Default: Empty list
236
- -en, --encoding <string> Encoding to use when writing
237
- content.
238
- <string>: any string
239
- Default: UTF-8
240
- -ex, --extended-variables <string> Extended variables that will be
241
- available as {{extended.*}}. -ex "{\"
242
- var1\": \"val1\"}" will print out
243
- "val1" for a template like "{{extended.
244
- var1}}"
245
- <string>: any string
246
- Default:
247
- -fc, --from-commit <string> From commit.
248
- <string>: any string
249
- Default: 0000000000000000000000000000000000000000
250
- -fr, --from-ref <string> From ref.
251
- <string>: any string
252
- Default: null
253
- -gapi, --github-api <string> GitHub API. Like: https://api.
254
- github.com/repos/tomasbjerre/git-
255
- changelog-command-line/
256
- <string>: any string
257
- Default:
258
- -ge, --github-enabled Enable parsing for GitHub
259
- issues.
260
- Default: disabled
261
- -gl, --gitlab-enabled Enable parsing for GitLab
262
- issues.
263
- Default: disabled
264
- -glpn, --gitlab-project-name <string> GitLab project name.
265
- <string>: any string
266
- Default:
267
- -gls, --gitlab-server <string> GitLab server, like https:
268
- //gitlab.com/.
269
- <string>: any string
270
- Default:
271
- -glt, --gitlab-token <string> GitLab API token.
272
- <string>: any string
273
- Default:
274
- -gtok, --github-token <string> GitHub API OAuth2 token. You
275
- can get it from: curl -u
276
- 'yourgithubuser' -d '{"note":"Git Changelog
277
- Lib"}' https://api.github.
278
- com/authorizations
279
- <string>: any string
280
- Default:
281
- -h, --help <argument-to-print-help-for> <argument-to-print-help-for>: an argument to print help for
282
- Default: If no specific parameter is given the whole usage text is given
283
- -handlebars-helper-file, -hhf <path> Can be used to add extra
284
- helpers.
285
- <path>: a file path
286
- Default: /home/bjerre/workspace/git-changelog/git-changelog-command-line/.
287
- -ini, --ignore-commits-without-issue Ignore commits that is not
288
- included in any issue.
289
- Default: disabled
290
- -iot, --ignore-older-than <string> Ignore commits older than yyyy-
291
- MM-dd HH:mm:ss.
292
- <string>: any string
293
- Default:
294
- -ip, --ignore-pattern <string> Ignore commits where pattern
295
- matches message.
296
- <string>: any string
297
- Default: ^Merge.*
298
- -itp, --ignore-tag-pattern <string> Ignore tags that matches
299
- regular expression. Can be used to
300
- ignore release candidates and only
301
- include actual releases.
302
- <string>: any string
303
- Default: null
304
- -jba, --jira-basic-auth <string> Optional token to authenticate
305
- with Jira.
306
- <string>: any string
307
- Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
308
- -jbt, --jira-bearer <string> Optional token to authenticate
309
- with Jira.
310
- <string>: any string
311
- Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
312
- -je, --jira-enabled Enable parsing for Jira issues.
313
- Default: disabled
314
- -jp, --jira-pattern <string> Jira issue pattern.
315
- <string>: any string
316
- Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
317
- -jpw, --jira-password <string> Optional password to
318
- authenticate with Jira.
319
- <string>: any string
320
- Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
321
- -js, --jiraServer, --jira-server <string> Jira server. When a Jira server
322
- is given, the title of the Jira
323
- issues can be used in the changelog.
324
- <string>: any string
325
- Default: null
326
- -ju, --jira-username <string> Optional username to
327
- authenticate with Jira.
328
- <string>: any string
329
- Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
330
- -mavp, --major-version-pattern <string> Commit messages matching this,
331
- optional, regular expression will trigger
332
- new major version.
333
- <string>: any string
334
- Default: null
335
- -mivp, --minor-version-pattern <string> Commit messages matching this,
336
- optional, regular expression will trigger
337
- new minor version.
338
- <string>: any string
339
- Default: ^[Ff]eat.*
340
- -ni, --no-issue-name <string> Name of virtual issue that
341
- contains commits that has no issue
342
- associated.
343
- <string>: any string
344
- Default: No issue
345
- -of, --output-file <string> Write output to file.
346
- <string>: any string
347
- Default:
348
- -pavp, --patch-version-pattern <string> Commit messages matching this,
349
- optional, regular expression will trigger
350
- new patch version.
351
- <string>: any string
352
- Default: null
353
- -phv, --print-highest-version Print the highest version,
354
- determined by tags in repo, and exit.
355
- Default: disabled
356
- -phvt, --print-highest-version-tag Print the tag corresponding to
357
- highest version, and exit.
358
- Default: disabled
359
- -pnv, --print-next-version Print the next version,
360
- determined by commits since highest
361
- version, and exit.
362
- Default: disabled
363
- -ptf, --prepend-to-file <string> Add the changelog to top of
364
- given file.
365
- <string>: any string
366
- Default: null
367
- -r, --repo <string> Repository.
368
- <string>: any string
369
- Default: .
370
- -re, --redmine-enabled Enable parsing for Redmine
371
- issues.
372
- Default: disabled
373
- -rhh, --register-handlebars-helper <string> Handlebar helpers, https:
374
- //handlebarsjs.com/guide/block-helpers.html,
375
- to register and use in given
376
- template.
377
- <string>: any string
378
- Default:
379
- -ri, --remove-issue-from-message Dont print any issues in the
380
- messages of commits.
381
- Default: disabled
382
- -rmp, --redmine-pattern <string> Redmine issue pattern.
383
- <string>: any string
384
- Default: #([0-9]+)
385
- -rmpw, --redmine-password <string> Optional password to
386
- authenticate with Redmine.
387
- <string>: any string
388
- Default:
389
- -rms, --redmine-server <string> Redmine server. When a Redmine
390
- server is given, the title of the
391
- Redmine issues can be used in the
392
- changelog.
393
- <string>: any string
394
- Default: null
395
- -rmt, --redmine-token <string> Optional token/api-key to
396
- authenticate with Redmine.
397
- <string>: any string
398
- Default:
399
- -rmu, --redmine-username <string> Optional username to
400
- authenticate with Redmine.
401
- <string>: any string
402
- Default:
403
- -rt, --readable-tag-name <string> Pattern to extract readable
404
- part of tag.
405
- <string>: any string
406
- Default: /([^/]+?)$
407
- -sf, --settings-file <string> Use settings from file.
408
- <string>: any string
409
- Default: null
410
- --show-debug-info Please run your command with
411
- this parameter and supply output
412
- when reporting bugs.
413
- Default: disabled
414
- -std, --stdout Print builder to <STDOUT>.
415
- Default: disabled
416
- -t, --template <string> Template to use. A default
417
- template will be used if not specified.
418
- <string>: any string
419
- Default: changelog.mustache
420
- -tbd, --template-base-dir <string> Base dir of templates.
421
- <string>: any string
422
- Default: null
423
- -tc, --to-commit <string> To commit.
424
- <string>: any string
425
- Default: null
426
- -tec, --template-content <string> String to use as template.
427
- <string>: any string
428
- Default:
429
- -tps, --template-partial-suffix <string> File ending for partials.
430
- <string>: any string
431
- Default: .hbs
432
- -tr, --to-ref <string> To ref.
433
- <string>: any string
434
- Default: refs/heads/master
435
- -tz, --time-zone <string> TimeZone to use when printing
436
- dates.
437
- <string>: any string
438
- Default: UTC
439
- -ui, --use-integrations Use integrations to get more
440
- details on commits.
441
- Default: disabled
442
- -ut, --untagged-name <string> When listing commits per tag,
443
- this will by the name of a virtual
444
- tag that contains commits not
445
- available in any git tag.
446
- <string>: any string
447
- Default: No tag
247
+ -cl, --custom-issue-link <string> Custom issue link.
248
+ Supports variables like
249
+ ${PATTERN_GROUP_1} to inject variables
250
+ from pattern.
251
+ <string>: any string
252
+ Default: null
253
+ -cn, --custom-issue-name <string> Custom issue name.
254
+ <string>: any string
255
+ Default: null
256
+ -cp, --custom-issue-pattern <string> Custom issue pattern.
257
+ <string>: any string
258
+ Default: null
259
+ -ct, --custom-issue-title <string> Custom issue title.
260
+ Supports variables like
261
+ ${PATTERN_GROUP_1} to inject variables
262
+ from pattern.
263
+ <string>: any string
264
+ Default: null
265
+ -df, --date-format <string> Format to use when
266
+ printing dates.
267
+ <string>: any string
268
+ Default: YYYY-MM-dd HH:mm:ss
269
+ -eh, --extended-headers <string> Extended headers that
270
+ will send when access JIRA.
271
+ e.g. -eh CF-Access-
272
+ Client-ID:abcde12345xyz.access [Supports Multiple occurrences]
273
+ <string>: any string
274
+ Default: Empty list
275
+ -en, --encoding <string> Encoding to use when
276
+ writing content.
277
+ <string>: any string
278
+ Default: UTF-8
279
+ -ex, --extended-variables <string> Extended variables
280
+ that will be available as
281
+ {{extended.*}}. -ex "{\"var1\": \"
282
+ val1\"}" will print out "val1"
283
+ for a template like
284
+ "{{extended.var1}}"
285
+ <string>: any string
286
+ Default:
287
+ -fre, --from-revision <string> From revision.
288
+ <string>: any string
289
+ Default: 0000000000000000000000000000000000000000
290
+ -frei, --from-revision-inclusiveness Include, or exclude,
291
+ <InclusivenessStrategy> specified revision.
292
+ <InclusivenessStrategy>: {INCLUSIVE | EXCLUSIVE | DEFAULT}
293
+ Default: DEFAULT
294
+ -gapi, --github-api <string> GitHub API. Like:
295
+ https://api.github.
296
+ com/repos/tomasbjerre/git-changelog-command-line/
297
+ <string>: any string
298
+ Default:
299
+ -ge, --github-enabled Enable parsing for
300
+ GitHub issues.
301
+ Default: disabled
302
+ -gl, --gitlab-enabled Enable parsing for
303
+ GitLab issues.
304
+ Default: disabled
305
+ -glpn, --gitlab-project-name <string> GitLab project name.
306
+ <string>: any string
307
+ Default:
308
+ -gls, --gitlab-server <string> GitLab server, like
309
+ https://gitlab.com/.
310
+ <string>: any string
311
+ Default:
312
+ -glt, --gitlab-token <string> GitLab API token.
313
+ <string>: any string
314
+ Default:
315
+ -gtok, --github-token <string> GitHub API OAuth2
316
+ token. You can get it from:
317
+ curl -u 'yourgithubuser' -d
318
+ '{"note":"Git Changelog Lib"}'
319
+ https://api.github.
320
+ com/authorizations
321
+ <string>: any string
322
+ Default:
323
+ -h, --help <argument-to-print-help-for> <argument-to-print-help-for>: an argument to print help for
324
+ Default: If no specific parameter is given the whole usage text is given
325
+ -handlebars-helper-file, -hhf <path> Can be used to add
326
+ extra helpers.
327
+ <path>: a file path
328
+ Default: /home/bjerre/workspace/git-changelog/git-changelog-command-line/.
329
+ -ini, --ignore-commits-without-issue Ignore commits that is
330
+ not included in any issue.
331
+ Default: disabled
332
+ -iot, --ignore-older-than <string> Ignore commits older
333
+ than yyyy-MM-dd HH:mm:ss.
334
+ <string>: any string
335
+ Default:
336
+ -ip, --ignore-pattern <string> Ignore commits where
337
+ pattern matches message.
338
+ <string>: any string
339
+ Default: ^Merge.*
340
+ -itp, --ignore-tag-pattern <string> Ignore tags that
341
+ matches regular expression.
342
+ Can be used to ignore
343
+ release candidates and only
344
+ include actual releases.
345
+ <string>: any string
346
+ Default: null
347
+ -jaf, --jira-additional-field <string> Adds an additional
348
+ field for Jira. When
349
+ configured, we will return from
350
+ Jira the result of this
351
+ field, if it exists. [Supports Multiple occurrences]
352
+ <string>: any string
353
+ Default: Empty list
354
+ -jba, --jira-basic-auth <string> Optional token to
355
+ authenticate with Jira.
356
+ <string>: any string
357
+ Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
358
+ -jbt, --jira-bearer <string> Optional token to
359
+ authenticate with Jira.
360
+ <string>: any string
361
+ Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
362
+ -je, --jira-enabled Enable parsing for
363
+ Jira issues.
364
+ Default: disabled
365
+ -jp, --jira-pattern <string> Jira issue pattern.
366
+ <string>: any string
367
+ Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
368
+ -jpw, --jira-password <string> Optional password to
369
+ authenticate with Jira.
370
+ <string>: any string
371
+ Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
372
+ -js, --jiraServer, --jira-server <string> Jira server. When a
373
+ Jira server is given, the
374
+ title of the Jira issues can
375
+ be used in the changelog.
376
+ <string>: any string
377
+ Default: null
378
+ -ju, --jira-username <string> Optional username to
379
+ authenticate with Jira.
380
+ <string>: any string
381
+ Default: \\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b
382
+ -mavp, --major-version-pattern <string> Commit messages
383
+ matching this, optional,
384
+ regular expression will
385
+ trigger new major version.
386
+ <string>: any string
387
+ Default: null
388
+ -mivp, --minor-version-pattern <string> Commit messages
389
+ matching this, optional,
390
+ regular expression will
391
+ trigger new minor version.
392
+ <string>: any string
393
+ Default: ^[Ff]eat.*
394
+ -ni, --no-issue-name <string> Name of virtual issue
395
+ that contains commits that
396
+ has no issue associated.
397
+ <string>: any string
398
+ Default: No issue
399
+ -of, --output-file <string> Write output to file.
400
+ <string>: any string
401
+ Default:
402
+ -pavp, --patch-version-pattern <string> Commit messages
403
+ matching this, optional,
404
+ regular expression will
405
+ trigger new patch version.
406
+ <string>: any string
407
+ Default: null
408
+ -phv, --print-highest-version Print the highest
409
+ version, determined by tags in
410
+ repo, and exit.
411
+ Default: disabled
412
+ -phvt, --print-highest-version-tag Print the tag
413
+ corresponding to highest version,
414
+ and exit.
415
+ Default: disabled
416
+ -pnv, --print-next-version Print the next
417
+ version, determined by commits
418
+ since highest version, and
419
+ exit.
420
+ Default: disabled
421
+ -ptf, --prepend-to-file <string> Add the changelog to
422
+ top of given file.
423
+ <string>: any string
424
+ Default: null
425
+ -r, --repo <string> Repository.
426
+ <string>: any string
427
+ Default: .
428
+ -re, --redmine-enabled Enable parsing for
429
+ Redmine issues.
430
+ Default: disabled
431
+ -rhh, --register-handlebars-helper <string> Handlebar helpers,
432
+ https://handlebarsjs.
433
+ com/guide/block-helpers.html, to
434
+ register and use in given
435
+ template.
436
+ <string>: any string
437
+ Default:
438
+ -ri, --remove-issue-from-message Dont print any issues
439
+ in the messages of
440
+ commits.
441
+ Default: disabled
442
+ -rmp, --redmine-pattern <string> Redmine issue pattern.
443
+ <string>: any string
444
+ Default: #([0-9]+)
445
+ -rmpw, --redmine-password <string> Optional password to
446
+ authenticate with Redmine.
447
+ <string>: any string
448
+ Default:
449
+ -rms, --redmine-server <string> Redmine server. When a
450
+ Redmine server is given, the
451
+ title of the Redmine issues
452
+ can be used in the
453
+ changelog.
454
+ <string>: any string
455
+ Default: null
456
+ -rmt, --redmine-token <string> Optional token/api-key
457
+ to authenticate with
458
+ Redmine.
459
+ <string>: any string
460
+ Default:
461
+ -rmu, --redmine-username <string> Optional username to
462
+ authenticate with Redmine.
463
+ <string>: any string
464
+ Default:
465
+ -rt, --readable-tag-name <string> Pattern to extract
466
+ readable part of tag.
467
+ <string>: any string
468
+ Default: /([^/]+?)$
469
+ -sf, --settings-file <string> Use settings from file.
470
+ <string>: any string
471
+ Default: null
472
+ --show-debug-info Please run your
473
+ command with this parameter
474
+ and supply output when
475
+ reporting bugs.
476
+ Default: disabled
477
+ -std, --stdout Print builder to
478
+ <STDOUT>.
479
+ Default: disabled
480
+ -t, --template <string> Template to use. A
481
+ default template will be used
482
+ if not specified.
483
+ <string>: any string
484
+ Default: changelog.mustache
485
+ -tbd, --template-base-dir <string> Base dir of templates.
486
+ <string>: any string
487
+ Default: null
488
+ -tec, --template-content <string> String to use as
489
+ template.
490
+ <string>: any string
491
+ Default:
492
+ -tps, --template-partial-suffix <string> File ending for
493
+ partials.
494
+ <string>: any string
495
+ Default: .hbs
496
+ -tre, --to-revision <string> To revision.
497
+ <string>: any string
498
+ Default: refs/heads/master
499
+ -trei, --to-revision-inclusiveness Include, or exclude,
500
+ <InclusivenessStrategy> specified revision.
501
+ <InclusivenessStrategy>: {INCLUSIVE | EXCLUSIVE | DEFAULT}
502
+ Default: DEFAULT
503
+ -tz, --time-zone <string> TimeZone to use when
504
+ printing dates.
505
+ <string>: any string
506
+ Default: UTC
507
+ -ui, --use-integrations Use integrations to
508
+ get more details on
509
+ commits.
510
+ Default: disabled
511
+ -ut, --untagged-name <string> When listing commits
512
+ per tag, this will by the
513
+ name of a virtual tag that
514
+ contains commits not available
515
+ in any git tag.
516
+ <string>: any string
517
+ Default: No tag
448
518
  ```
449
519
 
450
520
  ## Usage - template base dir
@@ -0,0 +1,11 @@
1
+ -----BEGIN PGP SIGNATURE-----
2
+ Version: BCPG v1.68
3
+
4
+ iQEcBAABCgAGBQJkxTl3AAoJEJxRmnfYMAu7RZkIAJJgqIjyaDrsrVNkC3B+txVz
5
+ jUZItyi/IDMslhkYDZ8J6WcFtNiRwnS+JJTla0/SHf0vDrNWOCXsyhl+cXxHR9Pr
6
+ z26EbZAgQsIWqZdOkkap1gkAgHRRSmNq59u53jEYGgsRzAoIWNXyua97P2c0rKH0
7
+ NqKVATvZY1LcY8lAaOf+53TIovav1WF6+yVnNcUua25RJPMKUuM5z22S30BAW+vH
8
+ i0UacdoOo4h1BsZcni8zAGJI1kJ2b+p4GaUUf8KxLB2b323W4WTkMY6LZFjbOeVC
9
+ Vmfj6Y5e6NlvquGtUq9u2OCJDQkVI+MP4LTnuM1Lsy5G8BIK+DaP97tnjFKm05M=
10
+ =5OEi
11
+ -----END PGP SIGNATURE-----
@@ -0,0 +1,11 @@
1
+ -----BEGIN PGP SIGNATURE-----
2
+ Version: BCPG v1.68
3
+
4
+ iQEcBAABCgAGBQJkxTl2AAoJEJxRmnfYMAu7qwYH/3igqqXIGBqcYm/GpJ7ky7VI
5
+ XzJXO/5A3PE+5AZSNUrwDMS9q0kErn0bdHjqS1qD73z2q4i0c1Xqc+hWD+UPPy2h
6
+ hEhMxU6uEVAbQHLZtm0jNa46YVE/Vg+uDz+OOF3Mrn+nKZ09MvPli59Pv1lHdPum
7
+ ae9KzMOofaoRAECuZ4eySksCX4pGgZwJJMx0TUev0sLkkYH1d98sxSbeQQL/p4M7
8
+ SpNkag0URggXzGIuAE5beyGOcx5CjypWLvDj9nXFObdjin264AOAmFkpgbzg4FM8
9
+ GoM1QiKCl5my5kG2QIzMkuz2HMXkH8rFyBlfl5eNIyziXlwNJr1iKSLXhfhvHh8=
10
+ =YH2s
11
+ -----END PGP SIGNATURE-----
@@ -0,0 +1,11 @@
1
+ -----BEGIN PGP SIGNATURE-----
2
+ Version: BCPG v1.68
3
+
4
+ iQEcBAABCgAGBQJkxTl3AAoJEJxRmnfYMAu71YMH/iQrcVCrI+JymPLlz0/aoIsL
5
+ xRVC/g+bogzF7Hzxm8QNpmE8R3uFBpWod7JpHGSQOtmLXLXHz3uxRlGDI2B5+bd+
6
+ sLO/iCAxiEUOTFl9xUOE7Wme3v9S0RuTznsLtOHWuqVmO9GYxRDQTb7k0P29353q
7
+ kt463Zm0Ji3DA7n54nkJcUnhYJwyF7iECtt2xKGI9NnWsALXZ2brKFe2c7lt3Iky
8
+ etLn/upbHxp0Bd7YpXcjK7Hg8eWOkw3zG4p7S9CfIzjUfDj9k65eWfB6hg9+zM0l
9
+ KJi6ix8tyG4o+yE1XD+mRY8lXh9O0hnBtvQ5KbWnO+HEmznqUyBwIoiSwmvs6ic=
10
+ =dR4b
11
+ -----END PGP SIGNATURE-----
@@ -0,0 +1,11 @@
1
+ -----BEGIN PGP SIGNATURE-----
2
+ Version: BCPG v1.68
3
+
4
+ iQEcBAABCgAGBQJkxTl2AAoJEJxRmnfYMAu71LYIAJeVXEgKr33i0vAa5jNoaREz
5
+ 7U6v3nsGwr4qpP3YOf1/uA5bOX+0EXnk50Ij0zQN4mvKqKxdUWs93V9YOXc6ocCh
6
+ +Mj0KDNel7F+QxqQkMH0JJw0sf9ItvjrIfM0z3yJS2+YrwQexNM99OyogsAjOgMt
7
+ tVZgZlUcxWTzXuOLRkRjIjykIliu+Ilp53uw02z6fFwc0zJNV+RxgXz4QBwhUMA7
8
+ iQBj9vDExrc8YdubtHkvvR/xQBlKzK7/vCjrRCXKK5ePj4xzzznfphRPHUWWCHI2
9
+ Pu+QX0Z/cpkl9MaieWMZTsicUOvhIrYdandN71JqtHeCbZwIRRMkUiEd5S/KZIk=
10
+ =57x2
11
+ -----END PGP SIGNATURE-----
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.102.0",
2
+ "version": "1.104.0",
3
3
  "name": "git-changelog-command-line",
4
4
  "homepage": "https://github.com/tomasbjerre/git-changelog-command-line",
5
5
  "repository": "https://github.com/tomasbjerre/git-changelog-command-line",
@@ -1,11 +0,0 @@
1
- -----BEGIN PGP SIGNATURE-----
2
- Version: BCPG v1.68
3
-
4
- iQEcBAABCgAGBQJkQ8mTAAoJEJxRmnfYMAu7wwsIAIIo4iLOMe+bX1gUF47aIfyB
5
- t7gHO526qfpY2Qu5Y5YFRK9Vi3G+w6ak11PCGnt7PCFMblCQsMK7y9AjywAwhyQI
6
- Q2KoQs4cxBsiV/RXZ1ULCOCYhfGaKH1yrhQtzZGIPxR7pRSpDlxOO93PVY1E9WS+
7
- kcafD/aBWdfL85iz7Qfvo/e0UGaRTcNDY/F8TS0SvlBeM+Ah95wEB9plry5WeFy6
8
- ozlKzY/v79i1uDtANml73nWzK6zXieNvtHYQj65kHaVpVsUgtmgiO9ujpyjH5snG
9
- 50LCHtT9HXkG2NWYpWQNsPkbuBUMPiOZUEl6cWzTTUElCUhIKw0tDIMOlLuH+T4=
10
- =QhbP
11
- -----END PGP SIGNATURE-----
@@ -1,11 +0,0 @@
1
- -----BEGIN PGP SIGNATURE-----
2
- Version: BCPG v1.68
3
-
4
- iQEcBAABCgAGBQJkQ8mTAAoJEJxRmnfYMAu7gm0H/Ak+lZmoAi3T4mzZxK3e1i61
5
- q2nX0lXdChn2XRDJJwpoO2dz4elPCMdmY3fQJXVdKybP+S/9cLmrxXlYOwtiZtMK
6
- FJTZd/oniwKK28UCul9k475KC78041JdZyEeBy7IiJkwxgGQl0lNNyusqP7dQ/pd
7
- +8Og8T2q7G5GFr3SVc9hasaMFcBRJg3u1NM+p9y4RhSbWnQWra9G+QfmivIm8BWU
8
- Q2uvRGQNS89Z8TTXmpDSGnDjbJ9csnNfe9eXX6ogOyRvOQ7ResYWcZp5DoZYhEGT
9
- ivETKfXFxQQD7qEog9bEss+VLFIHTzegZgQuU4Mfn8jRzpZPlR5YfWdc1OH6H4o=
10
- =fNpA
11
- -----END PGP SIGNATURE-----
@@ -1,11 +0,0 @@
1
- -----BEGIN PGP SIGNATURE-----
2
- Version: BCPG v1.68
3
-
4
- iQEcBAABCgAGBQJkQ8mTAAoJEJxRmnfYMAu7ujUH/3DBEtmn0t72u6taI54eNAL0
5
- myBG4lhK+XHKZ5zf/ZB77Q/XlzlhOtUz3+0jz9JF1YMJaR0QmiPT5yK4hEBRIPSq
6
- PPUxeDXx1HKeW2DfVnlzMuBKDDNZRjBQ2cIIKCnE3lYQb2+4VS5xGuAJ77eu/c3Z
7
- RwftvBUTwcdR6Pib9INU9st6Z6mW1hPUsUBad6+/Lbxi4apn9KFmuAhhNmvFIiUC
8
- V/NTWHOG6ij0+r24v1HyVQmvt6ycGsY985URwb1ufWVMN4gdGQn+gV9B6UyfeYh6
9
- sc/6AYtG/uALF1Un815fy4NVoGYAyv7LZ3nIZnflwsSSnQY71+a2AY41rQFcahU=
10
- =pQCD
11
- -----END PGP SIGNATURE-----
@@ -1,11 +0,0 @@
1
- -----BEGIN PGP SIGNATURE-----
2
- Version: BCPG v1.68
3
-
4
- iQEcBAABCgAGBQJkQ8mTAAoJEJxRmnfYMAu7tRsH/ig+DNvxuf54qC5sHCRQX8fc
5
- g3ZzDscBRfHhqGXQoeETBU+zIVcX00WxjOcimcPKkx8mSCzFlrfWpQDGkvb50h1w
6
- dm55WgdlSzIPvmp0vCK1z7834E4N32Z5etfhoGSeoQheUorcoj93j1c8MQjnoVQy
7
- XMWa/kUDK7EwCZGOCJ5GHDQP2FeQc4M04nAb+HEyaz64ESD6xxM/F9I7n3pfHiaG
8
- b6vkqKqtLXywH5vAhg+SeEUU2ao94fFjPL5W1TWjXsssW17PodEkTRySvYzlS9Ic
9
- Is/0kS1dKVdLEyr6OtSKqS/5aHxDoqdZLmE27QmQO1gW0hYoWIuqb3MOoyFcyWk=
10
- =lC4u
11
- -----END PGP SIGNATURE-----