Update changelog and docs
This commit is contained in:
parent
0b4f0353dd
commit
b8a0985cfc
2 changed files with 27 additions and 7 deletions
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
|
|
||||||
(defchangelog (:ignore-words ("ASDF"))
|
(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
|
(1.1.2 2021-09-19
|
||||||
"Move from Qlot 0.11.1 to 0.11.5.")
|
"Move from Qlot 0.11.1 to 0.11.5.")
|
||||||
(1.1.1 2021-09-12
|
(1.1.1 2021-09-12
|
||||||
|
|
30
docs.lisp
30
docs.lisp
|
@ -43,6 +43,7 @@ and [Qlot](https://github.com/fukamachi/qlot) inside the Github CI.
|
||||||
(@typical-usage section)
|
(@typical-usage section)
|
||||||
(@roswell-version section)
|
(@roswell-version section)
|
||||||
(@asdf-version section)
|
(@asdf-version section)
|
||||||
|
(@qlot-version section)
|
||||||
(@ql-file section)
|
(@ql-file section)
|
||||||
(@caching section)
|
(@caching section)
|
||||||
(@roadmap section)
|
(@roadmap section)
|
||||||
|
@ -130,27 +131,42 @@ system. It is documented [here](https://40ants.com/run-tests).
|
||||||
|
|
||||||
(defsection @roswell-version (:title "Overriding Roswell version")
|
(defsection @roswell-version (:title "Overriding Roswell version")
|
||||||
"
|
"
|
||||||
By default this action will install the latest version of Roswell. However,
|
By default this action will install the latest version of Roswell known to be
|
||||||
should you need to use a different version instead, you can specify that via
|
working with this action. However, should you need to use a different version
|
||||||
the `roswell-version` argument:
|
instead, you can specify that via the `roswell-version` argument:
|
||||||
|
|
||||||
```
|
```
|
||||||
- uses: 40ants/setup-lisp@v1
|
- uses: 40ants/setup-lisp@v1
|
||||||
with:
|
with:
|
||||||
roswell-version: v21.06.14.110
|
roswell-version: v21.10.14.111
|
||||||
```
|
```
|
||||||
")
|
")
|
||||||
|
|
||||||
|
|
||||||
(defsection @asdf-version (:title "Overriding ASDF version")
|
(defsection @asdf-version (:title "Overriding ASDF version")
|
||||||
"
|
"
|
||||||
By default, action will install the latest ASDF version. But sometimes you might
|
By default this action will install the latest version of ASDF known to be
|
||||||
want to fix an ASDF version. In such case, use `asdf-version` argument:
|
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
|
- uses: 40ants/setup-lisp@v1
|
||||||
with:
|
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
|
||||||
```
|
```
|
||||||
")
|
")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue