-
Notifications
You must be signed in to change notification settings - Fork 8
/
relnotes.toml
83 lines (69 loc) · 1.57 KB
/
relnotes.toml
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
# Configuration used to generate the releases notes for rust-lang/rust
# Used with https://github.com/EmbarkStudios/relnotes
owner = "rust-lang"
repo = "rust"
# Replace with the current milestone dates
from = "2021-03-20T17:19:00+01:00"
to = "2021-04-30T15:24:00+01:00"
date-format = "%Y-%m-%d"
skip-labels = [
"beta-nominated",
"beta-accepted",
"stable-nominated",
"stable-accepted",
"rollup",
]
[[categories]]
title = "Relnotes"
labels = ["relnotes"]
[[categories]]
title = "Language"
labels = ["T-lang"]
[[categories]]
title = "Compiler"
labels = ["T-compiler"]
[[categories]]
title = "Libraries"
labels = ["T-libs"]
[[includes]]
owner = "rust-lang"
repo = "cargo"
title = "Cargo"
use-parent-for-timeframe = true
[template]
string = """
Version {{version}} ({{date}})
============================
{% for title, prs in categories %}
{{ title }}
-----------------------
{% for pr in prs %}
- [{{ pr.title }}][{{ pr.number }}]
{%- endfor %}
{% endfor %}
{% for include in includes %}
{{ include.title }}
-----------------------
{% for pr in include.prs %}
- [{{ pr.title }}][{{ include.repo }}/{{ pr.number }}]
{%- endfor %}
{% endfor %}
UNSORTED
--------
{% for pr in prs -%}
- [{{ pr.title }}][{{ pr.number }}]
{% endfor %}
{% for _, prs in categories %}
{% for pr in prs -%}
[{{ pr.number }}]: {{ pr.html_url }}
{% endfor %}
{%- endfor %}
{%- for pr in prs -%}
[{{pr.number}}]: {{pr.html_url}}
{% endfor -%}
{%- for include in includes -%}
{% for pr in include.prs -%}
[{{ include.repo }}/{{pr.number}}]: {{pr.html_url}}
{% endfor %}
{% endfor %}
"""