acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

changelog-template.hbs (4133B)

      1 {{#each releases}}
      2   ## [{{title}}]({{href}}) {{niceDate}}
      3 
      4   ### Breaking Changes
      5   {{#commit-list merges heading='' message='BREAKING CHANGE'}}
      6     - :warning: {{message}} [`{{id}}`]({{href}})
      7   {{/commit-list}}
      8   {{#commit-list commits heading='' message='BREAKING CHANGE'}}
      9     - :warning: {{subject}} [`{{shorthash}}`]({{href}})
     10   {{/commit-list}}
     11   {{#commit-list fixes heading='' message='BREAKING CHANGE'}}
     12     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
     13   {{/commit-list}}
     14 
     15   ### Architectural
     16   {{#commit-list merges heading='' message='^arch' exclude='BREAKING CHANGE'}}
     17     - {{message}} [`{{id}}`]({{href}})
     18   {{/commit-list}}
     19   {{#commit-list commits heading='' message='^arch' exclude='BREAKING CHANGE'}}
     20     - {{subject}} [`{{shorthash}}`]({{href}})
     21   {{/commit-list}}
     22   {{#commit-list fixes heading='' message='^arch' exclude='BREAKING CHANGE'}}
     23     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
     24   {{/commit-list}}
     25 
     26   ### New Features
     27   {{#commit-list merges heading='' message='^feat' exclude='BREAKING CHANGE'}}
     28     - {{message}} [`{{id}}`]({{href}})
     29   {{/commit-list}}
     30   {{#commit-list commits heading='' message='^feat' exclude='BREAKING CHANGE'}}
     31     - {{subject}} [`{{shorthash}}`]({{href}})
     32   {{/commit-list}}
     33   {{#commit-list fixes heading='' message='^feat' exclude='BREAKING CHANGE'}}
     34     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
     35   {{/commit-list}}
     36 
     37 
     38   ### Performance
     39   {{#commit-list merges heading='' message='^perf' exclude='BREAKING CHANGE'}}
     40     - {{message}} [`{{id}}`]({{href}})
     41   {{/commit-list}}
     42   {{#commit-list commits heading='' message='^perf' exclude='BREAKING CHANGE'}}
     43     - {{subject}} [`{{shorthash}}`]({{href}})
     44   {{/commit-list}}
     45   {{#commit-list fixes heading='' message='^perf' exclude='BREAKING CHANGE'}}
     46     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
     47   {{/commit-list}}
     48 
     49   ### Fixes
     50   {{#commit-list merges heading='' message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
     51     - {{message}} [`{{id}}`]({{href}})
     52   {{/commit-list}}
     53   {{#commit-list commits heading='' message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
     54     - {{subject}} [`{{shorthash}}`]({{href}})
     55   {{/commit-list}}
     56   {{#commit-list fixes heading=''  message='^fix' exclude='(^fix conflict|^fix warning|BREAKING CHANGE)'}}
     57     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
     58   {{/commit-list}}
     59 
     60 
     61   ### Examples
     62   {{#commit-list merges heading='' message='^example'}}
     63     - {{message}} [`{{id}}`]({{href}})
     64   {{/commit-list}}
     65   {{#commit-list commits heading='' message='^example'}}
     66     - {{subject}} [`{{shorthash}}`]({{href}})
     67   {{/commit-list}}
     68   {{#commit-list fixes heading='' message='^example'}}
     69     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
     70   {{/commit-list}}
     71 
     72 
     73   ### Docs
     74   {{#commit-list merges heading='' message='^docs'}}
     75     - {{message}} [`{{id}}`]({{href}})
     76   {{/commit-list}}
     77   {{#commit-list commits heading='' message='^docs'}}
     78     - {{subject}} [`{{shorthash}}`]({{href}})
     79   {{/commit-list}}
     80   {{#commit-list fixes heading='' message='^docs'}}
     81     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
     82   {{/commit-list}}
     83 
     84   ### CI and tests
     85   {{#commit-list merges heading='' message='(^ci|^test)'}}
     86     - {{message}} [`{{id}}`]({{href}})
     87   {{/commit-list}}
     88   {{#commit-list commits heading='' message='(^ci|^test)'}}
     89     - {{subject}} [`{{shorthash}}`]({{href}})
     90   {{/commit-list}}
     91   {{#commit-list fixes heading='' message='(^ci|^test)'}}
     92     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
     93   {{/commit-list}}
     94 
     95   ### Others
     96   {{#commit-list merges heading='' exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
     97     - {{message}} [`{{id}}`]({{href}})
     98   {{/commit-list}}
     99   {{#commit-list commits heading='' exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
    100     - {{subject}} [`{{shorthash}}`]({{href}})
    101   {{/commit-list}}
    102   {{#commit-list fixes heading=''  exclude='(^fix|^feat|^perf|^docs|^example|^ci|^test)'}}
    103     - {{commit.subject}} [`{{commit.shorthash}}`]({{commit.href}})
    104   {{/commit-list}}
    105 
    106 {{/each}}