|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The ASF licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, |
| 12 | +# software distributed under the License is distributed on an |
| 13 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +# KIND, either express or implied. See the License for the |
| 15 | +# specific language governing permissions and limitations |
| 16 | +# under the License. |
| 17 | + |
| 18 | +[changelog] |
| 19 | +body = """ |
| 20 | +
|
| 21 | +## [{{ version | trim_start_matches(pat="v") }}]\ |
| 22 | + {%- if release_link -%}\ |
| 23 | + ({{ release_link }})\ |
| 24 | + {% endif %} \ |
| 25 | + - {{ timestamp | date(format="%Y-%m-%d") }} |
| 26 | +{% for group, commits in commits | group_by(attribute="group") %} |
| 27 | +### {{ group | upper_first }} |
| 28 | + {% for commit in commits %} |
| 29 | + {%- if commit.scope -%} |
| 30 | + - *({{commit.scope}})* {% if commit.breaking %}[**breaking**] {% endif %}\ |
| 31 | + {{ commit.message }}{{ self::username(commit=commit) }}\ |
| 32 | + {%- if commit.links %} \ |
| 33 | + ({% for link in commit.links %}[{{link.text}}]({{link.href}}) {% endfor -%})\ |
| 34 | + {% endif %} |
| 35 | + {% else -%} |
| 36 | + - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}{{ self::username(commit=commit) }}{{ self::pr(commit=commit) }} |
| 37 | + {% endif -%} |
| 38 | + {% endfor -%} |
| 39 | +{% endfor %} |
| 40 | +{%- if remote.contributors %} |
| 41 | +### Contributors |
| 42 | +{% for contributor in remote.contributors %} |
| 43 | + * @{{ contributor.username }} |
| 44 | +{%- endfor %} |
| 45 | +{% endif -%} |
| 46 | +{%- macro username(commit) -%} |
| 47 | + {% if commit.remote.username %} (by @{{ commit.remote.username }}){% endif -%} |
| 48 | +{% endmacro -%} |
| 49 | +{%- macro pr(commit) -%} |
| 50 | + {% if commit.remote.pr_number %} - #{{ commit.remote.pr_number }}{% endif -%} |
| 51 | +{% endmacro -%} |
| 52 | +""" |
0 commit comments