diff --git a/Makefile b/Makefile
index a47813b253c3a085d32f381d8d76ef2cc205cfb5..237d69912e921e98fec6fb4d184214852e974c8c 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@ XCL ?= xcl
 
 header_lisp := header.lisp
 driver_lisp := uiop/package.lisp uiop/common-lisp.lisp uiop/utility.lisp uiop/os.lisp uiop/pathname.lisp uiop/filesystem.lisp uiop/stream.lisp uiop/image.lisp uiop/run-program.lisp uiop/lisp-build.lisp uiop/configuration.lisp uiop/backward-driver.lisp uiop/driver.lisp
-defsystem_lisp := upgrade.lisp component.lisp system.lisp cache.lisp find-system.lisp find-component.lisp operation.lisp action.lisp lisp-action.lisp plan.lisp operate.lisp output-translations.lisp source-registry.lisp backward-internals.lisp defsystem.lisp bundle.lisp concatenate-source.lisp backward-interface.lisp interface.lisp user.lisp footer.lisp
+defsystem_lisp := upgrade.lisp component.lisp system.lisp cache.lisp find-system.lisp find-component.lisp operation.lisp action.lisp lisp-action.lisp plan.lisp operate.lisp backward-internals.lisp defsystem.lisp bundle.lisp concatenate-source.lisp output-translations.lisp backward-interface.lisp source-registry.lisp interface.lisp user.lisp footer.lisp
 all_lisp := $(header_lisp) $(driver_lisp) $(defsystem_lisp)
 
 # Making ASDF itself should be our first, default, target:
diff --git a/README b/README
index 47b6821069be67feb4fbc33eb77cd9e357ec220f..ccab9654aa3595bfcfed9740d691ed69efb4699a 100644
--- a/README
+++ b/README
@@ -13,13 +13,13 @@ If you want to define your own systems, further read the section
 Defining systems with defsystem.
 
 
-ASDF 3 now includes an extensive runtime support library, asdf-driver.
-Its documentation unhappily mainly lies in the source code and docstrings.
+ASDF 3 now includes an extensive runtime support library:
+UIOP, the Utilities for Implementation- and OS- Portability.
+Its documentation unhappily lies mainly in the source code and docstrings.
 
 
-More information and additional links can be found on ASDF's
-home page at:
+More information and additional links can be found on ASDF's home page at:
     http://common-lisp.net/project/asdf/
 
 
-Last updated Thursday, January 31st, 2013.
+Last updated Thursday, April 10th, 2013.
diff --git a/asdf.asd b/asdf.asd
index bd13576cf93a98a4bd77caa1c58efb6a892899d6..1c3fae74b88af6bcead8f33b5873b628fba3d606 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.33.1" ;; to be automatically updated by make bump-version
+  :version "2.33.2" ;; 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 477aa2b60014c3993d4f1a0f33cf27b07a2fa764..0074f102134cb92b9238a1036ea8b562d713b733 100644
--- a/header.lisp
+++ b/header.lisp
@@ -1,5 +1,5 @@
 ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
-;;; This is ASDF 2.33.1: Another System Definition Facility.
+;;; This is ASDF 2.33.2: 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 1ffa5f3ca12980aab06e3c720ba3e9433ff3d759..a0d9e00027f614b0ae18c31692d54a5971aa535f 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.33.1")
+         (asdf-version "2.33.2")
          (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 649b5df6c622588492c23d7d0b38d55b09c7664a..769894f7d4777a3208e97390f0507d2350cecd08 100644
--- a/version.lisp-expr
+++ b/version.lisp-expr
@@ -1 +1 @@
-"2.33.1"
+"2.33.2"