1{# This changelog template is used for automatically generated GH release notes. #}
2{# It is passed to commitizen's --template option in a GH Actions workflow run. #}
3
4{% for entry in tree %}
5
6{% for change_key, changes in entry.changes.items() %}
7
8{% if change_key %}
9### {{ change_key }}
10{% endif %}
11
12{% for change in changes %}
13{% if change.scope %}
14- **{{ change.scope }}**: {{ change.message }}
15{% elif change.message %}
16- {{ change.message }}
17{% endif %}
18{% endfor %}
19{% endfor %}
20{% endfor %}
21
22Thanks to <FILL OUT CONTRIBUTORS>, and others for contributing to this release!
23
24# Results of checking the release against common anti-virus SW
25
26<Upload the release binaries to VirusTotal and ADD a link to the report here>
27
28The failures are probably false positives. You can mark esptool as safe in your anti-virus SW, or [install esptool from source](https://docs.espressif.com/projects/esptool/en/latest/installation.html).
29