blob: 6a6923d9f94e8e1c4ca4a7d7af395c70f89e66e7 [file] [log] [blame]
Andrew Pickfordfd6a3a32017-09-13 16:24:21 +02001---
2# Usage:
3#
4# reno -qd .releasenotes list
5# reno -qd .releasenotes new slug-title --edit
6# reno -qd .releasenotes report --no-show-source
7
8# Change prelude_section_name to 'summary' from default value prelude
9prelude_section_name: summary
10show_source: False
11sections:
12 - [summary, Summary]
13 - [features, New features]
14 - [fixes, Bug fixes]
15 - [others, Other notes]
16template: |
17 ---
18 # Author the following sections or remove the section if it is not related.
19 # Use one release note per a feature.
20 #
21 # If you miss a section from the list below, please first submit a review
22 # adding it to .releasenotes/config.yaml.
23 #
24 # Format content with reStructuredText (RST).
25 # **Formatting examples:**
26 # - |
27 # This is a brief description of the feature. It may include a
28 # number of components:
29 #
30 # * List item 1
31 # * List item 2.
32 # This code block below will appear as part of the list item 2:
33 #
34 # .. code-block:: yaml
35 #
36 # classes:
37 # - system.class.to.load
38 #
39 # The code block below will appear on the same level as the feature
40 # description:
41 #
42 # .. code-block:: text
43 #
44 # provide model/formula pillar snippets
45
46
47 summary: >
48 This section is not mandatory. Use it to highlight the change.
49
50 features:
51 - Use the list to record summary of **NEW** features
52 - Provide detailed description of the feature indicating the use cases
53 when users benefit from using it
54 - Provide steps to deploy the feature (if the procedure is complicated
55 indicate during what stage of the deployment workflow it should be
56 deployed).
57 - Provide troubleshooting information, if any.
58
59 fixes:
60 - Use the list to record summary of a bug fix for blocker, critical.
61 - Provide a brief summary of what has been fixed.
62
63 others:
64 - Author any additional notes. Use this section if note is not related to
65 any of the common sections above.
66