diff --git a/Data/Attoparsec/FastSet.hs b/Data/Attoparsec/FastSet.hs
--- a/Data/Attoparsec/FastSet.hs
+++ b/Data/Attoparsec/FastSet.hs
@@ -11,9 +11,9 @@
 -- Portability :  unknown
 --
 -- Fast set membership tests for 'Word8' and 8-bit 'Char' values.  The
--- set representation is unboxed for efficiency.  For sets of fewer
--- than 32 elements, we test for membership using a binary search.
--- For larger sets, we use a lookup table.
+-- set representation is unboxed for efficiency.  For small sets, we
+-- test for membership using a binary search.  For larger sets, we use
+-- a lookup table.
 -- 
 -----------------------------------------------------------------------------
 module Data.Attoparsec.FastSet
diff --git a/attoparsec.cabal b/attoparsec.cabal
--- a/attoparsec.cabal
+++ b/attoparsec.cabal
@@ -1,5 +1,5 @@
 name:            attoparsec
-version:         0.8.1.0
+version:         0.8.1.1
 license:         BSD3
 license-file:    LICENSE
 category:        Text, Parsing
@@ -8,7 +8,9 @@
 stability:       experimental
 tested-with:     GHC == 6.10.4, GHC == 6.12.1
 synopsis:        Fast combinator parsing for bytestrings
-cabal-version:   >= 1.2
+cabal-version:   >= 1.6
+homepage:        http://bitbucket.org/bos/attoparsec
+bug-reports:     http://bitbucket.org/bos/attoparsec/issues
 build-type:      Simple
 description:
     A fast parser combinator library, aimed particularly at dealing
@@ -54,3 +56,7 @@
   other-modules:   Data.Attoparsec.Internal
   ghc-options:     -Wall
   ghc-prof-options: -auto-all
+
+source-repository head
+  type:     mercurial
+  location: http://bitbucket.org/bos/attoparsec
