Skip to content

Commit 439d2d1

Browse files
chore: Release 3.2.2 [skip ci]
1 parent a7bde01 commit 439d2d1

File tree

5 files changed

+67
-0
lines changed

5 files changed

+67
-0
lines changed

dist/commit.hbs

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
*{{#if scope}} **{{scope}}:**
2+
{{~/if}} {{#if subject}}
3+
{{~subject}}
4+
{{~else}}
5+
{{~header}}
6+
{{~/if}}
7+
8+
{{~!-- commit link --}}{{~#if hash}} {{#if @root.linkReferences~}}
9+
([{{shortHash}}]({{commitUrlFormat}}))
10+
{{~else}}
11+
{{~shortHash}}
12+
{{~/if}}{{~/if}}
13+
14+
{{~!-- commit references --}}
15+
{{~#if references~}}
16+
, closes
17+
{{~#each references}} {{#if @root.linkReferences~}}
18+
[
19+
{{~#if this.owner}}
20+
{{~this.owner}}/
21+
{{~/if}}
22+
{{~this.repository}}{{this.prefix}}{{this.issue}}]({{issueUrlFormat}})
23+
{{~else}}
24+
{{~#if this.owner}}
25+
{{~this.owner}}/
26+
{{~/if}}
27+
{{~this.repository}}{{this.prefix}}{{this.issue}}
28+
{{~/if}}{{/each}}
29+
{{~/if}}
30+

dist/footer.hbs

Whitespace-only changes.

dist/header.hbs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{{#if isPatch~}}
2+
###
3+
{{~else~}}
4+
##
5+
{{~/if}} {{#if @root.linkCompare~}}
6+
[{{version}}]({{compareUrlFormat}})
7+
{{~else}}
8+
{{~version}}
9+
{{~/if}}
10+
{{~#if title}} "{{title}}"
11+
{{~/if}}
12+
{{~#if date}} ({{date}})
13+
{{/if}}

dist/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/template.hbs

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{{> header}}
2+
3+
{{#if noteGroups}}
4+
{{#each noteGroups}}
5+
6+
### ⚠ {{title}}
7+
8+
{{#each notes}}
9+
* {{#if commit.scope}}**{{commit.scope}}:** {{/if}}{{text}}
10+
{{/each}}
11+
{{/each}}
12+
{{/if}}
13+
{{#each commitGroups}}
14+
15+
{{#if title}}
16+
### {{title}}
17+
18+
{{/if}}
19+
{{#each commits}}
20+
{{> commit root=@root}}
21+
{{/each}}
22+
23+
{{/each}}

0 commit comments

Comments
 (0)