Files
luban-lite-t3e-pro/packages/artinchip/lvgl-ui/lvgl_v9/lvgl/scripts/changelog-template.hbs

150 lines
4.6 KiB
Handlebars
Raw Normal View History

2023-08-30 16:21:18 +08:00
{{#each releases}}
2024-09-30 17:06:01 +08:00
`{{title}} <{{href}}>`__ {{niceDate}}
---------------------------------------------------------------------------------------------------------------------------------------------------
2023-08-30 16:21:18 +08:00
2024-09-30 17:06:01 +08:00
Breaking Changes
~~~~~~~~~~~~~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' message='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- .. warning: {{message}}
`{{id}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' message='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- .. warning: {{subject}}
`{{shorthash}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' message='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
2024-09-30 17:06:01 +08:00
Architectural
~~~~~~~~~~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' message='^arch' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{message}}**
`{{id}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' message='^arch' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{subject}}**
`{{shorthash}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' message='^arch' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
2024-09-30 17:06:01 +08:00
New Features
~~~~~~~~~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' message='^feat' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{message}}**
`{{id}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' message='^feat' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{subject}}**
`{{shorthash}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' message='^feat' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
2024-09-30 17:06:01 +08:00
Performance
~~~~~~~~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' message='^perf' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{message}}**
`{{id}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' message='^perf' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{subject}}**
`{{shorthash}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' message='^perf' exclude='BREAKING CHANGE'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
2024-09-30 17:06:01 +08:00
Fixes
~~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
2024-09-30 17:06:01 +08:00
- **{{message}}**
`{{id}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
2024-09-30 17:06:01 +08:00
- **{{subject}}**
`{{shorthash}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
2024-09-30 17:06:01 +08:00
Examples
~~~~~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' message='^example'}}
2024-09-30 17:06:01 +08:00
- **{{message}}**
`{{id}} <({{href}})>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' message='^example'}}
2024-09-30 17:06:01 +08:00
- **{{subject}}**
`{{shorthash}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' message='^example'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
2024-09-30 17:06:01 +08:00
Docs
~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' message='^docs'}}
2024-09-30 17:06:01 +08:00
- **{{message}}**
`{{id}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' message='^docs'}}
2024-09-30 17:06:01 +08:00
- **{{subject}}**
`{{shorthash}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' message='^docs'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
2024-09-30 17:06:01 +08:00
CI and tests
~~~~~~~~~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' message='(^ci|^test)'}}
2024-09-30 17:06:01 +08:00
- **{{message}}**
`{{id}} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' message='(^ci|^test)'}}
2024-09-30 17:06:01 +08:00
- **{{subject}}**
`{{shorthash }} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' message='(^ci|^test)'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
2024-09-30 17:06:01 +08:00
Others
~~~~~~
2023-08-30 16:21:18 +08:00
{{#commit-list merges heading='' exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
2024-09-30 17:06:01 +08:00
- **{{message}}**
`{{id }} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list commits heading='' exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
2024-09-30 17:06:01 +08:00
- **{{subject}}**
`{{shorthash }} <{{href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{#commit-list fixes heading='' exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
2024-09-30 17:06:01 +08:00
- **{{commit.subject}}**
`{{commit.shorthash}} <{{commit.href}}>`__
2023-08-30 16:21:18 +08:00
{{/commit-list}}
{{/each}}