diff --git a/ListLike.cabal b/ListLike.cabal
--- a/ListLike.cabal
+++ b/ListLike.cabal
@@ -1,14 +1,14 @@
 Name: ListLike
-Version: 1.0.2
+Version: 1.1.0
 License: LGPL
-Maintainer: John W. Lato <jwlato@gmail.com>
+Maintainer: John Goerzen <jgoerzen@complete.org>
 Author: John Goerzen
 Copyright: Copyright (c) 2007-2008 John Goerzen
 license-file: COPYRIGHT
-extra-source-files: COPYING
+extra-source-files: COPYING, README
 Category: Generics
 Build-Type: Simple
-homepage: http://github.com/JohnLato/listlike
+homepage: http://software.complete.org/listlike
 synopsis: Generic support for list-like structures
 Description: Generic support for list-like structures in Haskell.
  .
@@ -30,11 +30,11 @@
         Data.ListLike.String,
         Data.ListLike.Utils
 -- Other-Modules: Data.ConfigFile.Lexer
-Build-Depends: base           >= 3 && < 5
-              ,mtl            >= 1.1.0 && < 1.2
-              ,containers     >= 0.3 && < 0.4
-              ,bytestring     >= 0.9.1 && < 0.10
-              ,array          >= 0.3 && < 0.4
+Build-Depends: base       >= 3     && < 5
+              ,mtl        >= 1.1.0 && < 1.2
+              ,containers >= 0.3   && < 0.5
+              ,bytestring >= 0.9.1 && < 0.10
+              ,array      >= 0.3   && < 0.4
 
 Executable: runtests
 Buildable: False
diff --git a/README b/README
new file mode 100644
--- /dev/null
+++ b/README
@@ -0,0 +1,10 @@
+The ListLike package provides typeclasses and instances to allow
+polymorphism over many common datatypes.
+
+The package can be built/installed with Cabal.  If you have cabal-install,
+simply run "cabal install ListLike" to install the package.  Without
+cabal-install, execute the following commands:
+
+$ runghc Setup.hs configure
+$ runghc Setup.hs build
+$ runghc Setup.hs install
diff --git a/src/Data/ListLike/Instances.hs b/src/Data/ListLike/Instances.hs
--- a/src/Data/ListLike/Instances.hs
+++ b/src/Data/ListLike/Instances.hs
@@ -304,7 +304,7 @@
 -- Map
 
 instance (Ord key) => FoldableLL (Map.Map key val) (key, val) where
-    foldr f start m = Map.foldWithKey func start m
+    foldr f start m = Map.foldrWithKey func start m
             where func k v accum = f (k, v) accum
     foldl f start m = L.foldl f start (Map.toList m)
 
diff --git a/testsrc/runtests.hs b/testsrc/runtests.hs
--- a/testsrc/runtests.hs
+++ b/testsrc/runtests.hs
@@ -1,6 +1,3 @@
-{-# LANGUAGE ScopedTypeVariables #-}
-
-
 {-
 Copyright (C) 2007 John Goerzen <jgoerzen@complete.org>
 
