18 lines
560 B
Common Lisp
18 lines
560 B
Common Lisp
|
(defpackage #:project-docs/changelog
|
||
|
(:use #:cl)
|
||
|
(:import-from #:40ants-doc/changelog
|
||
|
#:defchangelog))
|
||
|
(in-package project-docs/changelog)
|
||
|
|
||
|
|
||
|
(defchangelog (:ignore-words ("ASDF"))
|
||
|
(1.1.0 2021-06-06
|
||
|
"Added a new input variable `asdf-version`. By default, the latest
|
||
|
ASDF will be used.")
|
||
|
(1.0.2 2021-04-04
|
||
|
"Fixed installation of `libcurl4-openssl-dev` on Ubuntu Focal.")
|
||
|
(1.0.1 2021-02-22
|
||
|
"Fixed error when there is no `qlfile` in the repository.")
|
||
|
(1.0.0 2021-01-07
|
||
|
"Initial version."))
|