diff --git a/asdf.asd b/asdf.asd
index d086c47dd743fb49522754bb90adab89c96654cc..b417b166b70af56f0cb5d505f8defb0d9625d3a5 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 "3.0.2.4" ;; to be automatically updated by make bump-version
+  :version "3.0.2.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/header.lisp b/header.lisp
index 67554f22008040ae60ac0985d0deed45abfe8c27..07a0a40cd8819e6750da938cd347887bb54194fd 100644
--- a/header.lisp
+++ b/header.lisp
@@ -1,5 +1,5 @@
 ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
-;;; This is ASDF 3.0.2.4: Another System Definition Facility.
+;;; This is ASDF 3.0.2.5: Another System Definition Facility.
 ;;;
 ;;; Feedback, bug reports, and patches are all welcome:
 ;;; please mail to <asdf-devel@common-lisp.net>.
diff --git a/uiop/run-program.lisp b/uiop/run-program.lisp
index 143e20f8858ebce918d8d8a25a833f28c35ce815..9f00e1c1eb2cdbbc2ef01dcf3c08d2757264a134 100644
--- a/uiop/run-program.lisp
+++ b/uiop/run-program.lisp
@@ -316,9 +316,8 @@ EXTERNAL-FORMAT for the stream passed to the OUTPUT processor."
                            #-(or allegro clozure) (list "cmd" "/c" command))
                           #+os-windows
                           (list
-                           #+(or allegro clozure) (escape-windows-command command)
-                           #-(or allegro clozure) command)))
-                      #+(and clozure os-windows) (command (list command))
+                           #+allegro (escape-windows-command command)
+                           #-allegro command)))
                       (process*
                         (multiple-value-list
                          #+allegro
diff --git a/upgrade.lisp b/upgrade.lisp
index e13aa757b1f95f2c02ff83c75f9529189763ace5..e9d532381f94a31cf9c2ed3a8562a31adf360543 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 "3.0.2.4")
+         (asdf-version "3.0.2.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 d03e3317fdf4640863d125427c259a404dee4be3..a55a7ff4e8a31714279db12f4552f410d3a8eada 100644
--- a/version.lisp-expr
+++ b/version.lisp-expr
@@ -1,2 +1,2 @@
-"3.0.2.4"
+"3.0.2.5"