diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,2 +1,5 @@
+## 0.1.0.1
+* Add lower bound for mysql-simple dependency.
+
 ## 0.1.0.0
 * Initial release.
diff --git a/mysql-json-table.cabal b/mysql-json-table.cabal
--- a/mysql-json-table.cabal
+++ b/mysql-json-table.cabal
@@ -1,5 +1,5 @@
 name: mysql-json-table
-version: 0.1.0.0
+version: 0.1.0.1
 category: Database
 synopsis: Using MySQL to store id-to-json tables.
 description: Visit the homepage for more information, or read the readme.
@@ -22,7 +22,10 @@
   ghc-options: -Wall -Wunused-packages
   build-depends:
       base < 5
-    , mysql, mysql-simple, aeson, bytestring
+    , mysql
+    , mysql-simple >= 0.4.8
+    , aeson
+    , bytestring
     , conduit
   exposed-modules: Database.MySQL.JSONTable
 
