diff --git a/CHANGES.md b/CHANGES.md
new file mode 100644
--- /dev/null
+++ b/CHANGES.md
@@ -0,0 +1,1 @@
+# See ./FEATURES.md
diff --git a/FEATURES.md b/FEATURES.md
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -1,8 +1,13 @@
 # Description
 
 To attain a changelog of this library between two arbitrary versions
-you can use `git diff`. For example: `git diff v0.1.0..v0.2.0 -- FEATURES.md`
+you ask git for a diff on this file. For example:
 
+    git diff v0.2.0..v0.2.6 -- FEATURES.md
+
+Alternatively, you may obtain a diff between two versions via any online
+diffing service, [such as this one](http://www.diffnow.com/?url1=https://raw.githubusercontent.com/Wizek/dump/v0.2.0/FEATURES.md&url2=https://raw.githubusercontent.com/Wizek/dump/v0.2.6/FEATURES.md).
+
 # Features
 
 * Use it with Debug.Trace: `trace [d|x, y, z|] x`
@@ -40,3 +45,8 @@
 # Known issues
 
 n/a
+
+# Miscellaneous
+
+* Some Haddock documentation, probably more to come
+* Description in FEATURES.md
diff --git a/dump.cabal b/dump.cabal
--- a/dump.cabal
+++ b/dump.cabal
@@ -2,13 +2,13 @@
 -- see http://haskell.org/cabal/users-guide/
 
 name:               dump
-version:            0.2.5
+version:            0.2.6
 
 synopsis:           Dumps the names and values of expressions to ease debugging.
 
 description:        Can be used with "Debug.Trace", "Test.QuickCheck", or just
                     plain old "System.IO"'s "putStrLn".
-
+                    .
                     See README.md and FEATURES.md for further details.
 
 license:            MIT
@@ -17,7 +17,7 @@
 maintainer:         dumplibhs.psssst@dfgh.net
 category:           Development
 build-type:         Simple
-extra-source-files: README.md, FEATURES.md
+extra-source-files: README.md, FEATURES.md, CHANGES.md
 cabal-version:      >=1.10
 homepage:           https://github.com/Wizek/dump
 
