diff --git a/dataenc.cabal b/dataenc.cabal
--- a/dataenc.cabal
+++ b/dataenc.cabal
@@ -1,11 +1,12 @@
 name: dataenc
-version: 0.11
+version: 0.11.1
 license: LGPL
 license-file: COPYING.LESSER
 cabal-version: >= 1.2
 build-type: Simple
 author: Magnus Therning
 maintainer: magnus@therning.org
+homepage: http://www.haskell.org/haskellwiki/Library/Data_encoding
 copyright: Magnus Therning, 2007
 category: Codec
 synopsis: Data encoding library
diff --git a/src/Codec/Binary/Base16.hs b/src/Codec/Binary/Base16.hs
--- a/src/Codec/Binary/Base16.hs
+++ b/src/Codec/Binary/Base16.hs
@@ -20,6 +20,9 @@
 --
 --   Implemented as specified in RFC 4648
 --   (<http://tools.ietf.org/html/rfc4648>).
+--
+--   Further documentation and information can be found at
+--   <http://www.haskell.org/haskellwiki/Library/Data_encoding>.
 module Codec.Binary.Base16
     ( encode
     , decode
diff --git a/src/Codec/Binary/Base32.hs b/src/Codec/Binary/Base32.hs
--- a/src/Codec/Binary/Base32.hs
+++ b/src/Codec/Binary/Base32.hs
@@ -20,6 +20,9 @@
 --
 --   Implemented as specified in RFC 4648
 --   (<http://tools.ietf.org/html/rfc4648>).
+--
+--   Further documentation and information can be found at
+--   <http://www.haskell.org/haskellwiki/Library/Data_encoding>.
 module Codec.Binary.Base32
     ( encode
     , decode
diff --git a/src/Codec/Binary/Base32Hex.hs b/src/Codec/Binary/Base32Hex.hs
--- a/src/Codec/Binary/Base32Hex.hs
+++ b/src/Codec/Binary/Base32Hex.hs
@@ -20,6 +20,9 @@
 --
 --   Implemented as specified in RFC 4648
 --   (<http://tools.ietf.org/html/rfc4648>).
+--
+--   Further documentation and information can be found at
+--   <http://www.haskell.org/haskellwiki/Library/Data_encoding>.
 module Codec.Binary.Base32Hex
     ( encode
     , decode
diff --git a/src/Codec/Binary/Base64.hs b/src/Codec/Binary/Base64.hs
--- a/src/Codec/Binary/Base64.hs
+++ b/src/Codec/Binary/Base64.hs
@@ -20,6 +20,9 @@
 --
 --   Implemented as specified in RFC 4648
 --   (<http://tools.ietf.org/html/rfc4648>).
+--
+--   Further documentation and information can be found at
+--   <http://www.haskell.org/haskellwiki/Library/Data_encoding>.
 module Codec.Binary.Base64
     ( encode
     , decode
diff --git a/src/Codec/Binary/Base64Url.hs b/src/Codec/Binary/Base64Url.hs
--- a/src/Codec/Binary/Base64Url.hs
+++ b/src/Codec/Binary/Base64Url.hs
@@ -20,6 +20,9 @@
 --
 --   Implemented as specified in RFC 4648
 --   (<http://tools.ietf.org/html/rfc4648>).
+--
+--   Further documentation and information can be found at
+--   <http://www.haskell.org/haskellwiki/Library/Data_encoding>.
 module Codec.Binary.Base64Url
     ( encode
     , decode
diff --git a/src/Codec/Binary/Base85.hs b/src/Codec/Binary/Base85.hs
--- a/src/Codec/Binary/Base85.hs
+++ b/src/Codec/Binary/Base85.hs
@@ -19,6 +19,9 @@
 -- | Base85 module.
 --
 --   Implemented as described at <http://en.wikipedia.org/wiki/Ascii85>.
+--
+--   Further documentation and information can be found at
+--   <http://www.haskell.org/haskellwiki/Library/Data_encoding>.
 module Codec.Binary.Base85
     ( encode
     , decode
diff --git a/src/Codec/Binary/DataEncoding.hs b/src/Codec/Binary/DataEncoding.hs
--- a/src/Codec/Binary/DataEncoding.hs
+++ b/src/Codec/Binary/DataEncoding.hs
@@ -22,6 +22,8 @@
 --   implemented in the library without causing the name clashing that would
 --   result from importing the individual encoding modules.
 --
+--   Further documentation and information can be found at
+--   <http://www.haskell.org/haskellwiki/Library/Data_encoding>.
 module Codec.Binary.DataEncoding
     ( DataCodec
     , encode
diff --git a/src/Codec/Binary/Uu.hs b/src/Codec/Binary/Uu.hs
--- a/src/Codec/Binary/Uu.hs
+++ b/src/Codec/Binary/Uu.hs
@@ -21,6 +21,9 @@
 --   Uuencoding is notoriously badly specified.  This implementation is
 --   compatible with the GNU Sharutils
 --   (<http://www.gnu.org/software/sharutils/>).
+--
+--   Further documentation and information can be found at
+--   <http://www.haskell.org/haskellwiki/Library/Data_encoding>.
 module Codec.Binary.Uu
     ( encode
     , decode
