diff --git a/asdf.asd b/asdf.asd index 9423c3889bd3f3ffa0f23f0beb87babe71d1db2e..69c2253e3590910b67b335b49ad9276313652a75 100644 --- a/asdf.asd +++ b/asdf.asd @@ -74,7 +74,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "2.30.4" ;; to be automatically updated by make bump-version + :version "2.30.5" ;; to be automatically updated by make bump-version :depends-on () #+asdf3 :encoding #+asdf3 :utf-8 ;; For most purposes, asdf itself specially counts as a builtin system. diff --git a/bundle.lisp b/bundle.lisp index e8ee05f6030a39a9322fe7a2de8fafb7aeb04a90..b97f2d872603bcbf54759ded1306247b64f7229e 100644 --- a/bundle.lisp +++ b/bundle.lisp @@ -339,7 +339,7 @@ (perform (find-operation o 'load-op) c)) (defmethod perform ((o load-fasl-op) (c compiled-file)) (perform (find-operation o 'load-op) c)) - (defmethod perform (o (c compiled-file)) + (defmethod perform ((o operation) (c compiled-file)) (declare (ignorable o c)) nil)) diff --git a/header.lisp b/header.lisp index 837fdd5f931b696d41367c929c4c0c4b92a7ebbc..f54b06d411b22d6be859883efa61647aa3e6a0b3 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 2.30.4: Another System Definition Facility. +;;; This is ASDF 2.30.5: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/upgrade.lisp b/upgrade.lisp index dbad10305932effb70dd715dcce6763f74e3b46d..8521eb3b87531211365d2ea6aa16c75f04716700 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO ;; "3.4.5.67" would be a development version in the official upstream of 3.4.5. ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5 ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67 - (asdf-version "2.30.4") + (asdf-version "2.30.5") (existing-version (asdf-version))) (setf *asdf-version* asdf-version) (when (and existing-version (not (equal asdf-version existing-version))) diff --git a/version.lisp-expr b/version.lisp-expr index fb738892de515e3847078e55f88e3131d4cc7dcc..121386f1d74517d5816a0d0e71a45849231b37af 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"2.30.4" +"2.30.5"