mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2024-11-10 05:34:16 +00:00
chore: bump version and add CHANGELOG
This commit is contained in:
parent
a76ebb1fad
commit
739a354b94
2 changed files with 173 additions and 1 deletions
172
CHANGELOG.md
Normal file
172
CHANGELOG.md
Normal file
|
@ -0,0 +1,172 @@
|
|||
# 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
|
||||
- [`0.1.1`](#011) – _2020.08.14_
|
||||
- [`0.1.0`](#010) – _2020.08.10_
|
||||
|
||||
## [0.1.1]
|
||||
|
||||
_2020.08.14_
|
||||
|
||||
### 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. 💖
|
||||
|
||||
- Jan Christian Grünhage (<jan.christian@gruenhage.xyz>)
|
||||
|
||||
### Changes
|
||||
|
||||
#### Element Role
|
||||
|
||||
##### Bug Fixes
|
||||
|
||||
- **change folder name to match artifact** ([`a76ebb1`])
|
||||
|
||||
During the renaming of Riot to Element, the path for the webapp changed
|
||||
from /opt/riot to /opt/element. In those folders, the archives are
|
||||
unpacked, resulting in paths like /opt/element/riot-v${version}. Since
|
||||
the archives are not yet renamed
|
||||
(https://github.com/vector-im/element-web/issues/14896), this riot
|
||||
reference has to stay for now. In the renaming, this was accidentally
|
||||
changed prematurely, resulting in this regression.
|
||||
|
||||
|
||||
## [0.1.0]
|
||||
|
||||
_2020.08.10_
|
||||
|
||||
### 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. 💖
|
||||
|
||||
- Jan Christian Grünhage (<jan.christian@gruenhage.xyz>)
|
||||
|
||||
### Changes
|
||||
|
||||
#### Element Role
|
||||
|
||||
##### Updates
|
||||
|
||||
- **bump version to 1.7.3** ([`e2fbaf6`])
|
||||
|
||||
##### Refactoring
|
||||
|
||||
- **rename riot role to element** ([`5a777cd`])
|
||||
|
||||
Riot is now Element, and therefore this role has to do a lot of
|
||||
`s/riot/element/g`. There's still a few references to riot here and
|
||||
there, but fixing those depends on external changes.
|
||||
|
||||
This does not attempt any automatic migration, you will need to clean
|
||||
up the old webroot or container yourself.
|
||||
|
||||
|
||||
#### Synapse Role
|
||||
|
||||
##### Bug Fixes
|
||||
|
||||
- **fix location of signing key module** ([`40510a6`])
|
||||
|
||||
##### Updates
|
||||
|
||||
- **bump version to 1.18.0** ([`d1edba8`])
|
||||
|
||||
|
||||
#### Riot Role
|
||||
|
||||
##### Updates
|
||||
|
||||
- **bump version to 1.7.2** ([`6be0252`])
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
Config(
|
||||
accept_types: ["feat", "fix", "update", "refactor"],
|
||||
type_headers: {
|
||||
"feat": "Features",
|
||||
"fix": "Bug Fixes",
|
||||
"update": "Updates",
|
||||
"refactor": "Refactoring"
|
||||
},
|
||||
scope_headers: {
|
||||
"synapse": "Synapse Role",
|
||||
"element": "Element Role",
|
||||
"riot": "Riot Role"
|
||||
}
|
||||
)
|
||||
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 }}]
|
||||
|
||||
_{{ 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 scope, changes in release.changeset.changes | group_by(attribute="scope") -%}
|
||||
|
||||
#### {{ scope | scopeheader }}
|
||||
|
||||
{% for type, changes in 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 %}
|
||||
{%- endfor -%}
|
||||
)
|
||||
-->
|
|
@ -1,6 +1,6 @@
|
|||
namespace: famedly
|
||||
name: matrix
|
||||
version: 0.1.0
|
||||
version: 0.1.1
|
||||
readme: README.md
|
||||
authors:
|
||||
- Jan Christian Grünhage <jan.christian@gruenhage.xyz>
|
||||
|
|
Loading…
Reference in a new issue