diff --git a/src/changelog.lisp b/src/changelog.lisp index d4aefc5..95cee1e 100644 --- a/src/changelog.lisp +++ b/src/changelog.lisp @@ -7,6 +7,20 @@ (defchangelog (:ignore-words ("ASDF")) + (0.5.0 2024-07-28 + "* Fixed to work with latest Eclector. + + Before this fix, with latest Eclector 40ants-critic didn't compile ending with this error: + + ``` + The generic function + # + takes 5 required arguments; was asked to find a method with + specializers (PARSE-CLIENT T T T) + ``` + + because the generic-function signature was changed. +") (0.4.1 2022-11-10 "* Internal function asdf-system-files was fixed and now retursn unique filenames. diff --git a/src/forms-reader.lisp b/src/forms-reader.lisp index 538f79f..e7f1f97 100644 --- a/src/forms-reader.lisp +++ b/src/forms-reader.lisp @@ -13,7 +13,7 @@ result) (defmethod eclector.parse-result:make-skipped-input-result - ((client parse-client) (stream t) (reason t) (source t)) + ((client parse-client) (stream t) (reason t) (children t) (source t)) (list :reason reason :source source))