diff --git a/doc/manual/Makefile.am b/doc/manual/Makefile.am
index 595773f1cdbcaf2c6da1344059063167a06e200f..8f4c84790613819683bbc1011f1b8d4a4fa57268 100644
--- a/doc/manual/Makefile.am
+++ b/doc/manual/Makefile.am
@@ -11,10 +11,13 @@ SOURCES = manual.xml introduction.xml installation.xml overview.xml \
  troubleshooting.xml bugs.xml \
  style.css images
 
-manual.is-valid: $(SOURCES)
+manual.is-valid: $(SOURCES) version.xml
 	$(XMLLINT) --noout --valid manual.xml
 	touch $@
 
+version.xml:
+	echo -n $(VERSION) > version.xml
+
 man1_MANS = nix-store.1 nix-instantiate.1
 
 man $(MANS): $(SOURCES) manual.is-valid
@@ -38,6 +41,8 @@ images:
 	cp $(docbookxsl)/images/callouts/*.png images/callouts
 	chmod +w -R images
 
-EXTRA_DIST = $(SOURCES) manual.html manual.is-valid $(MANS) 
+KEEP = manual.html manual.is-valid version.xml $(MANS)
+
+EXTRA_DIST = $(SOURCES) $(KEEP)
 
-DISTCLEANFILES = manual.html manual.is-valid $(MANS)
+DISTCLEANFILES = $(KEEP)
diff --git a/doc/manual/introduction.xml b/doc/manual/introduction.xml
index 7759cd65a0e63b1d350a5916752f3f9c9b7ef936..b41cad0a80fc830d9f759971ddc0a68c11713fca 100644
--- a/doc/manual/introduction.xml
+++ b/doc/manual/introduction.xml
@@ -2,7 +2,7 @@
   <title>Introduction</title>
 
   <epigraph>
-    <para><quote>The number of Nix installations in the world has grown to 4,
+    <para><quote>The number of Nix installations in the world has grown to 5,
         with more expected.</quote></para>
   </epigraph>
 
diff --git a/doc/manual/manual.xml b/doc/manual/manual.xml
index e8896b073f0b99095aad44bb96e60856fb9e773b..9f88dd4090d4826ddcf804008336631643b8586d 100644
--- a/doc/manual/manual.xml
+++ b/doc/manual/manual.xml
@@ -11,11 +11,14 @@
 <!ENTITY nix-instantiate SYSTEM "nix-instantiate.xml">
 <!ENTITY troubleshooting SYSTEM "troubleshooting.xml">
 <!ENTITY bugs SYSTEM "bugs.xml">
+<!ENTITY version SYSTEM "version.xml">
 ]>
 
 <book>
   <title>Nix: A System for Software Deployment</title>
 
+  <subtitle>Draft (Version &version;)</subtitle>
+  
   <bookinfo>
     <author>
       <firstname>Eelco</firstname>