diff --git a/Cabal.cabal b/Cabal.cabal
index 8e4c1e457b0c7ec1735b772f927baa7aa63d7c6d..6f2025a890d086b8e6f1d73deea5c9dfbbcec24c 100644
--- a/Cabal.cabal
+++ b/Cabal.cabal
@@ -1,5 +1,5 @@
 Name: Cabal
-Version: 1.1.2
+Version: 1.1.3
 Copyright: 2003-2005, Isaac Jones
 Build-Depends: base, util
 License: BSD3
diff --git a/GNUmakefile b/GNUmakefile
index 2ec4009f7b551780c589a1ebc9527c227299f278..35fdab5bde2f0b73d70fe9161b4b0ecd905d8c83 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,4 +1,4 @@
-CABALVERSION=1.1.2
+CABALVERSION=1.1.3
 KIND=rc
 #KIND=latest
 GHCFLAGS= --make -Wall -fno-warn-unused-matches -cpp
diff --git a/README b/README
index 3963302ff2aeddcc20e8175d20fdc66a784f8649..160cca9459b3241391bdb5379dbeba912d712c7b 100644
--- a/README
+++ b/README
@@ -9,10 +9,14 @@ screwy, post to libraries@haskell.org for help.
 -= Quirky things about the build system =-
 
 * If you don't already have Cabal installed: "make install" as root,
-then try "ghci -package Cabal" to
-  test it.  If you get an error about multiple versions of Cabal, read
-  the section below "Working with older versions of Cabal" You were
-  supposed to read this first.
+  then try "ghci -package Cabal" to test it.  If you get an error
+  about multiple versions of Cabal, read the section below "Working
+  with older versions of Cabal" You were supposed to read this first.
+
+* The cabal should build just like any other Cabal-ized package.  If
+  you're using windows or have another means of building cabal
+  packages, you might want to ignore the GNUmakefile
+  altogether.
 
 * GNUmakefile is the one you're probably interested in.  If you see
   Makefile, it is probably from the fptools build tree, and it won't
@@ -45,8 +49,8 @@ run ghci.  For instance:
 
   $ ghci -package Cabal
     ...
-    ghc-6.4: Error; multiple packages match Cabal: Cabal-1.0, Cabal-1.0.1
-  $ ghci -package Cabal-1.0.1
+    ghc-6.4: Error; multiple packages match Cabal: Cabal-1.0, Cabal-1.1.3
+  $ ghci -package Cabal-1.1.3
     ...
     (OK)
 
diff --git a/changelog b/changelog
index 39beac2a315b5e12322b027cd340a07192081a12..a1f9a66456d3e30b0a78e8d60ed5da7e3d9ea5c6 100644
--- a/changelog
+++ b/changelog
@@ -1,5 +1,15 @@
 -*-change-log-*-
 
+1.1.3  Isaac Jones  <ijones@syntaxpolice.org> Sept 2005
+	* WARNING: Interfaces not documented in the user's guide may
+	  change in future releases.
+	* Move building of GHCi .o libs to the build phase rather than
+	register phase. (from Duncan Coutts)
+	* Use .tar.gz for source package extension
+	* Uses GHC instead of cpphs if the latter is not available
+	* Added experimental "command hooks" which completely override the
+	default behavior of a command.
+	* Some bugfixes
 1.1.1  Isaac Jones  <ijones@syntaxpolice.org> July 2005
 	* WARNING: Interfaces not documented in the user's guide may
 	  change in future releases.