summaryrefslogtreecommitdiff
path: root/lib/lvgl/scripts/changelog-template.hbs
blob: 6a749c4a4b53171b81eb77087030f27e230f7589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{{#each releases}}
  `{{title}} <{{href}}>`__ {{niceDate}}
  ---------------------------------------------------------------------------------------------------------------------------------------------------

  Breaking Changes
  ~~~~~~~~~~~~~~~~
  
  {{#commit-list merges heading='' message='BREAKING CHANGE'}}
    - .. warning: {{message}}
      `{{id}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list commits heading='' message='BREAKING CHANGE'}}
    - .. warning: {{subject}}
      `{{shorthash}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading='' message='BREAKING CHANGE'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

  Architectural
  ~~~~~~~~~~~~~
  
  {{#commit-list merges heading='' message='^arch' exclude='BREAKING CHANGE'}}
    - **{{message}}**
      `{{id}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list commits heading='' message='^arch' exclude='BREAKING CHANGE'}}
    - **{{subject}}**
      `{{shorthash}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading='' message='^arch' exclude='BREAKING CHANGE'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

  New Features
  ~~~~~~~~~~~~
  
  {{#commit-list merges heading='' message='^feat' exclude='BREAKING CHANGE'}}
    - **{{message}}**
      `{{id}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list commits heading='' message='^feat' exclude='BREAKING CHANGE'}}
    - **{{subject}}**
      `{{shorthash}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading='' message='^feat' exclude='BREAKING CHANGE'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

  Performance
  ~~~~~~~~~~~
  
  {{#commit-list merges heading='' message='^perf' exclude='BREAKING CHANGE'}}
    - **{{message}}**
      `{{id}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list commits heading='' message='^perf' exclude='BREAKING CHANGE'}}
    - **{{subject}}**
      `{{shorthash}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading='' message='^perf' exclude='BREAKING CHANGE'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

  Fixes
  ~~~~~
  
  {{#commit-list merges heading='' message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
    - **{{message}}**
      `{{id}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list commits heading='' message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
    - **{{subject}}**
      `{{shorthash}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading=''  message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

  Examples
  ~~~~~~~~
  
  {{#commit-list merges heading='' message='^example'}}
    - **{{message}}**
      `{{id}} <({{href}})>`__
  {{/commit-list}}
  {{#commit-list commits heading='' message='^example'}}
    - **{{subject}}**
      `{{shorthash}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading='' message='^example'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

  Docs
  ~~~~
  
  {{#commit-list merges heading='' message='^docs'}}
    - **{{message}}**
      `{{id}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list commits heading='' message='^docs'}}
    - **{{subject}}**
      `{{shorthash}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading='' message='^docs'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

  CI and tests
  ~~~~~~~~~~~~
  
  {{#commit-list merges heading='' message='(^ci|^test)'}}
    - **{{message}}**
      `{{id}} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list commits heading='' message='(^ci|^test)'}}
    - **{{subject}}**
      `{{shorthash }} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading='' message='(^ci|^test)'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

  Others
  ~~~~~~
  
  {{#commit-list merges heading='' exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
    - **{{message}}**
      `{{id }} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list commits heading='' exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
    - **{{subject}}**
      `{{shorthash }} <{{href}}>`__
  {{/commit-list}}
  {{#commit-list fixes heading=''  exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
    - **{{commit.subject}}**
      `{{commit.shorthash}} <{{commit.href}}>`__
  {{/commit-list}}

{{/each}}