matrix-wol/CHANGELOG.md

88 lines
2.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Changelog
All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog], and this project adheres to
[Semantic Versioning]. The file is auto-generated using [Conventional Commits].
[keep a changelog]: https://keepachangelog.com/en/1.0.0/
[semantic versioning]: https://semver.org/spec/v2.0.0.html
[conventional commits]: https://www.conventionalcommits.org/en/v1.0.0/
## Overview
<!--
Config(
accept_types: ["feat", "fix", "perf", "refactor"],
type_headers: {
"feat": "Features",
"fix": "Bug Fixes",
"perf": "Performance Improvements",
"refactor": "Refactor"
},
url: "https://git.jcg.re/jcgruenhage/matrix-wol/"
)
Template(
# Changelog
All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog], and this project adheres to
[Semantic Versioning]. The file is auto-generated using [Conventional Commits].
[keep a changelog]: https://keepachangelog.com/en/1.0.0/
[semantic versioning]: https://semver.org/spec/v2.0.0.html
[conventional commits]: https://www.conventionalcommits.org/en/v1.0.0/
## Overview
{% for release in releases %}
- [`{{ release.version }}`](#{{ release.version | replace(from=".", to="") }}) _{{ release.date | date(format="%Y.%m.%d")}}_
{%- endfor %}
{%- for release in releases -%}
## [{{ release.version }}]{% if release.title %} _{{ release.title }}_{% endif %}
_{{ release.date | date(format="%Y.%m.%d") }}_
{%- if release.notes %}
{{ release.notes }}
{% endif -%}
{%- if release.changeset.contributors %}
### Contributions
This release is made possible by the following people (in alphabetical order).
Thank you all for your contributions. Your work no matter how significant is
greatly appreciated by the community. 💖
{% for contributor in release.changeset.contributors %}
- {{ contributor.name }} (<{{ contributor.email }}>)
{%- endfor %}
{%- endif %}
### Changes
{% for type, changes in release.changeset.changes | group_by(attribute="type") -%}
#### {{ type | typeheader }}
{% for change in changes -%}
- **{{ change.description }}** ([`{{ change.commit.short_id }}`])
{% if change.body -%}
{{ change.body | indent(n=2) }}
{% endif -%}
{%- endfor -%}
{% endfor %}
{%- endfor -%}
)
-->