diff --git a/asdf.asd b/asdf.asd
index 53864ac3e2d9e09c647309268c6169efd3654d09..ba607e8f8698796191723eb50f5ef364e90b9c46 100644
--- a/asdf.asd
+++ b/asdf.asd
@@ -15,7 +15,7 @@
   :licence "MIT"
   :description "Another System Definition Facility"
   :long-description "ASDF builds Common Lisp software organized into defined systems."
-  :version "2.26.95" ;; to be automatically updated by bin/bump-revision
+  :version "2.26.96" ;; to be automatically updated by bin/bump-revision
   :depends-on ()
   :components ((:module "build" :components ((:file "asdf"))))
   :in-order-to (#+asdf2.27 (compile-op (monolithic-load-concatenated-source-op generate-asdf))))
diff --git a/configuration.lisp b/configuration.lisp
index d0ad6c0d053a70686f9bb60f4bbf67a6f43ff7e8..e84c263689d9ddff9902b21ad68659209ea2d9c6 100644
--- a/configuration.lisp
+++ b/configuration.lisp
@@ -3,7 +3,8 @@
 
 (asdf/package:define-package :asdf/configuration
   (:recycle :asdf/configuration :asdf)
-  (:use :common-lisp :asdf/utility :asdf/pathname :asdf/stream :asdf/os :asdf/image)
+  (:use :common-lisp :asdf/compatibility :asdf/utility
+   :asdf/pathname :asdf/stream :asdf/os :asdf/image)
   (:export
    #:get-folder-path
    #:user-configuration-directories #:system-configuration-directories
diff --git a/header.lisp b/header.lisp
index 7210b2f0a5acaf4118765ed85f740d711174a49c..c50e369b400c8738ecb86cc21e05e6f3f39c1f96 100644
--- a/header.lisp
+++ b/header.lisp
@@ -1,5 +1,5 @@
 ;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; coding: utf-8 -*-
-;;; This is ASDF 2.26.95: Another System Definition Facility.
+;;; This is ASDF 2.26.96: Another System Definition Facility.
 ;;;
 ;;; Feedback, bug reports, and patches are all welcome:
 ;;; please mail to <asdf-devel@common-lisp.net>.
diff --git a/test/script-support.lisp b/test/script-support.lisp
index 03becbdcf1e8d4314076e1a7460916f991fe70bb..d4f278368713f732e77d309c63738bebe36889d1 100644
--- a/test/script-support.lisp
+++ b/test/script-support.lisp
@@ -73,7 +73,6 @@ Some constraints:
         :do (finish-output s)))
 (defun redirect-outputs ()
   (finish-outputs)
-  #-allegro
   (setf *error-output* *standard-output*
         *trace-output* *standard-output*))
 
diff --git a/upgrade.lisp b/upgrade.lisp
index b15a570b425d934d6d25d43736446f3c871c4656..b58fed57a78b0d3eb613f3e1f30ce25a861828c6 100644
--- a/upgrade.lisp
+++ b/upgrade.lisp
@@ -35,7 +35,7 @@
          ;; "2.345.6" would be a development version in the official upstream
          ;; "2.345.0.7" would be your seventh local modification of official release 2.345
          ;; "2.345.6.7" would be your seventh local modification of development version 2.345.6
-         (asdf-version "2.26.95")
+         (asdf-version "2.26.96")
          (existing-asdf (find-class (find-symbol* :component :asdf nil) nil))
          (existing-version *asdf-version*)
          (already-there (equal asdf-version existing-version)))
diff --git a/version.lisp-expr b/version.lisp-expr
index 6bb778c878dbbf3a8e07d47cd74df22eba0b98b0..2b5fa4d8747d40cef1f2b0eadbae530595088779 100644
--- a/version.lisp-expr
+++ b/version.lisp-expr
@@ -1 +1 @@
-"2.26.95"
+"2.26.96"