My blog
https://blog.franco.net.eu.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
912 B
28 lines
912 B
--- |
|
layout: default |
|
--- |
|
|
|
# [{{ page.software_name }}]({{ site.baseurl }}/software#{{ page.software_name }}) changelog |
|
|
|
All notable changes to this project will be documented in this file. |
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), |
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
{% comment %}Add unreleased changes here{% endcomment %} |
|
{{ page.content }} |
|
|
|
{% assign ss = site.software | sort_natural: 'software_version_raw' | reverse %} |
|
|
|
{% for p in ss %} |
|
{% if p.has_changelog and p.software_name == page.software_name and p.software_version %} |
|
|
|
## [{{ p.software_version }}] - {{ p.release_timestamp | date: '%F' }} |
|
|
|
{% comment %}{% include_relative {{ ppath }} %}{% endcomment %} |
|
{{ p.content }} |
|
|
|
{% endif %} |
|
{% endfor %} |
|
|
|
back to [software/{{ page.software_name }}]({{ site.baseurl }}/software#{{ page.software_name }})
|
|
|