From b8a0985cfcf7f36f2d78ee9da03f9b57e55d0de5 Mon Sep 17 00:00:00 2001 From: Matteo Landi Date: Tue, 26 Oct 2021 17:25:53 +0200 Subject: [PATCH] Update changelog and docs --- changelog.lisp | 4 ++++ docs.lisp | 30 +++++++++++++++++++++++------- 2 files changed, 27 insertions(+), 7 deletions(-) diff --git a/changelog.lisp b/changelog.lisp index 0795cb5..30eeb44 100644 --- a/changelog.lisp +++ b/changelog.lisp @@ -6,6 +6,10 @@ (defchangelog (:ignore-words ("ASDF")) + (unreleased + "- Improves Windows support + - Installs Roswell v21.10.14.111 + - Installs ASDF 3.3.5.3") (1.1.2 2021-09-19 "Move from Qlot 0.11.1 to 0.11.5.") (1.1.1 2021-09-12 diff --git a/docs.lisp b/docs.lisp index b11dbf8..1a7b7cf 100644 --- a/docs.lisp +++ b/docs.lisp @@ -43,6 +43,7 @@ and [Qlot](https://github.com/fukamachi/qlot) inside the Github CI. (@typical-usage section) (@roswell-version section) (@asdf-version section) + (@qlot-version section) (@ql-file section) (@caching section) (@roadmap section) @@ -130,27 +131,42 @@ system. It is documented [here](https://40ants.com/run-tests). (defsection @roswell-version (:title "Overriding Roswell version") " -By default this action will install the latest version of Roswell. However, -should you need to use a different version instead, you can specify that via -the `roswell-version` argument: +By default this action will install the latest version of Roswell known to be +working with this action. However, should you need to use a different version +instead, you can specify that via the `roswell-version` argument: ``` - uses: 40ants/setup-lisp@v1 with: - roswell-version: v21.06.14.110 + roswell-version: v21.10.14.111 ``` ") (defsection @asdf-version (:title "Overriding ASDF version") " -By default, action will install the latest ASDF version. But sometimes you might -want to fix an ASDF version. In such case, use `asdf-version` argument: +By default this action will install the latest version of ASDF known to be +working with this action. However, should you need to use a different version +instead, you can specify that via the `asdf-version` argument: ``` - uses: 40ants/setup-lisp@v1 with: - asdf-version: 3.3.4.18 + asdf-version: 3.3.5.3 +``` +") + + +(defsection @qlot-version (:title "Overriding Qlot version") + " +By default this action will install the latest version of Qlot known to be +working with this action. However, should you need to use a different version +instead, you can specify that via the `qlot-version` argument: + +``` +- uses: 40ants/setup-lisp@v1 + with: + qlot-version: 0.11.5 ``` ")