diff --git a/Readme.md b/Readme.md
--- a/Readme.md
+++ b/Readme.md
@@ -1,5 +1,5 @@
 This library provides Haskell bindings to
-[LevelDB](http://leveldb.googlecode.com)
+[LevelDB](https://github.com/google/leveldb)
 
 [![Build Status](https://secure.travis-ci.org/kim/leveldb-haskell.png)](http://travis-ci.org/kim/leveldb-haskell)
 
@@ -9,7 +9,7 @@
 
 * [GHC 7.*](http://www.haskell.org/ghc)
 * [Cabal](http://www.haskell.org/cabal), version 1.3 or higher
-* [LevelDB](http://code.google.com/p/leveldb)
+* [LevelDB](https://github.com/google/leveldb)
 * Optional: [Snappy](http://code.google.com/p/snappy),
   if compression support is desired
 
diff --git a/leveldb-haskell.cabal b/leveldb-haskell.cabal
--- a/leveldb-haskell.cabal
+++ b/leveldb-haskell.cabal
@@ -1,5 +1,5 @@
 name:                leveldb-haskell
-version:             0.6.1
+version:             0.6.2
 synopsis:            Haskell bindings to LevelDB
 homepage:            http://github.com/kim/leveldb-haskell
 bug-reports:         http://github.com/kim/leveldb-haskell/issues
@@ -14,7 +14,7 @@
 cabal-version:       >=1.10
 tested-with:         GHC == 7.4.2, GHC == 7.6.4, GHC == 7.8.3
 description:
-    From <http://leveldb.googlecode.com>:
+    From <http://code.google.com/p/snappy>:
     .
     LevelDB is a fast key-value storage library written at Google that provides
     an ordered mapping from string keys to string values.
@@ -54,7 +54,7 @@
   build-depends:    base >= 3 && < 5
                   , bytestring
                   , data-default
-                  , exceptions == 0.6.*
+                  , exceptions >= 0.6
                   , filepath
                   , resourcet > 0.3.2
                   , transformers
@@ -64,7 +64,7 @@
 
   hs-source-dirs:   src
 
-  extra-libraries:  leveldb, snappy, stdc++
+  extra-libraries:  leveldb
 
 executable leveldb-example-comparator
   main-is:          comparator.hs
@@ -162,7 +162,7 @@
                   , bytestring
                   , data-default
                   , directory
-                  , exceptions       == 0.6.*
+                  , exceptions       >= 0.6
                   , mtl
                   , leveldb-haskell
                   , QuickCheck       == 2.7.*
