diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown
--- a/CHANGELOG.markdown
+++ b/CHANGELOG.markdown
@@ -1,3 +1,11 @@
+0.2.0.2
+-------
+* Fix documentation image links.
+
+0.2.0.1
+-------
+* Improve API documentation.
+
 0.2.0.0
 -------
 * Switch to main API based on generic vectors.
diff --git a/Numeric/FFT.hs b/Numeric/FFT.hs
--- a/Numeric/FFT.hs
+++ b/Numeric/FFT.hs
@@ -25,7 +25,7 @@
 -- calculates the entries in /H/, the discrete Fourier transform of
 -- /h/, as:
 --
--- <<doc-formulae/fft-formula.svg>>
+-- <<http://www.skybluetrades.net/images/arb-fft/fft-formula.svg>>
 fft :: Vector v (Complex Double) =>
        v (Complex Double) -> IO (v (Complex Double))
 fft xs = do
@@ -37,7 +37,7 @@
 -- representing Fourier amplitudes of a signal, calculates the entries
 -- in /h/, the inverse discrete Fourier transform of /H/, as:
 --
--- <<doc-formulae/ifft-formula.svg>>
+-- <<http://www.skybluetrades.net/images/arb-fft/ifft-formula.svg>>
 ifft :: Vector v (Complex Double) =>
         v (Complex Double) -> IO (v (Complex Double))
 ifft xs = do
diff --git a/arb-fft.cabal b/arb-fft.cabal
--- a/arb-fft.cabal
+++ b/arb-fft.cabal
@@ -1,5 +1,5 @@
 name:               arb-fft
-version:            0.2.0.1
+version:            0.2.0.2
 synopsis:           Pure Haskell arbitrary length FFT library
 homepage:           https://github.com/ian-ross/arb-fft
 license:            BSD3
