diff --git a/asdf.asd b/asdf.asd index 4a3edb18c25ea9ca446adb8c5abc4d336cb36b53..2e3afda6d91205c45b2c7da39e65457ffc0e3458 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.32" ;; to be automatically updated by make bump-version + :version "2.32.1" ;; 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/header.lisp b/header.lisp index 6588268870602d25b06b6ee89b7c9957db1a7699..2a25dac4ec5661d061bae3db4d333147d871f8ff 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 2.32: Another System Definition Facility. +;;; This is ASDF 2.32.1: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/output-translations.lisp b/output-translations.lisp index 583bfe09623e41c87f36f3cdefd8f07c65e4295b..2b916939103a4ac49b4cb94a0f21a1186752a3d5 100644 --- a/output-translations.lisp +++ b/output-translations.lisp @@ -48,7 +48,10 @@ and the order is by decreasing length of namestring of the source pathname.") (let ((directory (pathname-directory (car x)))) (if (listp directory) (length directory) 0)))))))) new-value) - (defsetf output-translations set-output-translations) ; works with gcl 2.6 + #-gcl2.6 + (defun* ((setf output-translations)) (new-value) (set-output-translations new-value)) + #+gcl2.6 + (defsetf output-translations set-output-translations) (defun output-translations-initialized-p () (and *output-translations* t)) diff --git a/upgrade.lisp b/upgrade.lisp index c6fe75cb68709fdf5e4372f411dea82faef909cd..460fe039d1823299a35548b8ef52dbbfeb73ce9f 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.32") + (asdf-version "2.32.1") (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 301587552e7968cddf917aa4860e935d46b2cf87..f673963619497b378b8451aa33237fb6b9ef20e4 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"2.32" +"2.32.1"