--- /dev/null
+Bug fix: The reader and string->number now reject `#e+inf.0', `#e+nan.0', &c.
+
+Infinities and NaNs are not exact numbers and as such there is no way
+to interpret them with the #e prefix. (The #i prefix still works.)
--- /dev/null
+Bug fix: The printer procedure now handles multiple back references.
--- /dev/null
+Bug fix: The sqrt procedure now correctly propagates NaNs, handles
+complex numbers with infinities, and raises floating-point exceptions
+only where appropriate.
--- /dev/null
+The reader and printer now support notation for all distinct NaNs.
+
+The sequence is <sign> <type> "." <payload>, where <sign> is "+" or
+"-", <type> is "nan" for quiet NaNs and "snan" for signalling NaNs, and
+<payload> is an integer represented in the current radix.
+
+The notations +snan.0 and -snan.0 are forbidden because the bit pattern
+they would mean represents +inf.0 and -inf.0 instead.
--- /dev/null
+The x86-specific floating-point subnormal operand exception is now
+supported, and can be tested and trapped on x86 systems.