mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
29 lines
1.0 KiB
Handlebars
29 lines
1.0 KiB
Handlebars
{{#each releases}}
|
|
## [{{title}}]({{href}}) {{niceDate}}
|
|
|
|
{{#commit-list commits heading='### Breaking Changes' message='BREAKING CHANGE:'}}
|
|
- :warning: {{subject}} [`{{shorthash}}`]({{href}})
|
|
{{/commit-list}}
|
|
|
|
{{#commit-list commits heading='### New Features' message='^feat' exclude='BREAKING CHANGE:'}}
|
|
- {{subject}} [`{{shorthash}}`]({{href}})
|
|
{{/commit-list}}
|
|
|
|
{{#commit-list commits heading='### Performance' message='^perf' exclude='BREAKING CHANGE:'}}
|
|
- {{subject}} [`{{shorthash}}`]({{href}})
|
|
{{/commit-list}}
|
|
|
|
{{#commit-list commits heading='### Fixes' message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE:)'}}
|
|
- {{subject}} [`{{shorthash}}`]({{href}})
|
|
{{/commit-list}}
|
|
|
|
{{#commit-list commits heading='### Docs' message='^docs'}}
|
|
- {{subject}} [`{{shorthash}}`]({{href}})
|
|
{{/commit-list}}
|
|
|
|
{{#commit-list commits heading='### Others' exclude='(^fix|^feat|^perf|^docs)'}}
|
|
- {{subject}} [`{{shorthash}}`]({{href}})
|
|
{{/commit-list}}
|
|
|
|
{{/each}}
|