diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml
index 7c78122f0..b8220dd96 100644
--- a/doc/manual/release-notes.xml
+++ b/doc/manual/release-notes.xml
@@ -6,6 +6,35 @@
+
+
+Release 1.2 (TBA)
+
+This release has the following improvements:
+
+
+
+
+ Nix no longer sets the immutable bit on files in the Nix
+ store. Instead, the recommended way to guard the Nix store
+ against accidental modification is to make it a read-only bind
+ mount, like this:
+
+
+$ mount --bind /nix/store /nix/store
+$ mount -o remount,ro,bind /nix/store
+
+
+ Nix will automatically make /nix/store
+ writable as needed (using a private mount namespace) to allow
+ modifications.
+
+
+
+
+
+
+
Release 1.1 (July 18, 2012)