From bbacca5b03a35557c74b8ee853a44fa86197f9d0 Mon Sep 17 00:00:00 2001 From: Marco Donadoni Date: Wed, 7 Feb 2024 18:13:18 +0100 Subject: [PATCH] refactor(docs): move from reST to Markdown (#8) Convert docs from reStructuredText to Markdown so that the changelog file is compatible with Release Please. --- AUTHORS.md | 7 +++++++ AUTHORS.rst | 8 -------- CHANGELOG.md | 18 ++++++++++++++++++ CHANGES.rst | 24 ------------------------ 4 files changed, 25 insertions(+), 32 deletions(-) create mode 100644 AUTHORS.md delete mode 100644 AUTHORS.rst create mode 100644 CHANGELOG.md delete mode 100644 CHANGES.rst diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 0000000..d3d3a30 --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,7 @@ +# Authors + +The list of contributors in alphabetical order: + +- [Marco Donadoni](https://orcid.org/0000-0003-2922-5505) +- [Marco Vidal](https://orcid.org/0000-0002-9363-4971) +- [Tibor Simko](https://orcid.org/0000-0001-7202-5803) diff --git a/AUTHORS.rst b/AUTHORS.rst deleted file mode 100644 index 8a476e5..0000000 --- a/AUTHORS.rst +++ /dev/null @@ -1,8 +0,0 @@ -Authors -======= - -The list of contributors in alphabetical order: - -- `Marco Donadoni `_ -- `Marco Vidal `_ -- `Tibor Simko `_ diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7b84790 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +## 1.1.1 (2023-12-06) + +- Changes the `release-docker` action to disable provenance and SBOM attestations. + +## 1.1.0 (2023-11-15) + +- Adds the `release-docker` action to automatically publish Docker images. + +## 1.0.1 (2023-08-16) + +- Changes the `local-validate` and `local-run` actions to update the dependent Checkout and Python sub-actions to their latest versions. + +## 1.0.0 (2021-10-11) + +- Adds the `local-validate` action to validate REANA specification files. +- Adds the `local-run` action to run workflows. diff --git a/CHANGES.rst b/CHANGES.rst deleted file mode 100644 index 551e398..0000000 --- a/CHANGES.rst +++ /dev/null @@ -1,24 +0,0 @@ -Changes -======= - -Version 1.1.1 (2023-12-06) --------------------------- - -- Changes the ``release-docker`` action to disable provenance and SBOM attestations. - -Version 1.1.0 (2023-11-15) --------------------------- - -- Adds the ``release-docker`` action to automatically publish Docker images. - - -Version 1.0.1 (2023-08-16) --------------------------- - -- Changes the ``local-validate`` and ``local-run`` actions to update the dependent Checkout and Python sub-actions to their latest versions. - -Version 1.0.0 (2021-10-11) --------------------------- - -- Adds the ``local-validate`` action to validate REANA specification files. -- Adds the ``local-run`` action to run workflows.