diff --git a/Database/HDBI/SQlite/Implementation.hs b/Database/HDBI/SQlite/Implementation.hs
--- a/Database/HDBI/SQlite/Implementation.hs
+++ b/Database/HDBI/SQlite/Implementation.hs
@@ -209,7 +209,7 @@
       SD.clearBindings rst
       return $ SQNew rst
 
-  fetchRow stmt = modifyMVar (ssState stmt) $ \st -> case st of
+  fetch stmt = modifyMVar (ssState stmt) $ \st -> case st of
     SQNew _ -> throwIO $ SqlDriverError
                $ sqliteMsg "Statement is not executed to fetch rows from"
     SQExecuted x SD.Row      -> fetch' x
diff --git a/hdbi-sqlite.cabal b/hdbi-sqlite.cabal
--- a/hdbi-sqlite.cabal
+++ b/hdbi-sqlite.cabal
@@ -1,12 +1,12 @@
 name:                hdbi-sqlite
-version:             1.1.1
+version:             1.2.0
 
 synopsis:            SQlite driver for HDBI
 homepage:            https://github.com/s9gf4ult/hdbi-sqlite
 license:             BSD3
 license-file:        LICENSE
 author:              Aleksey Uymanov
-maintainer:          Aleksey Uymaonov <s9gf4ult@gmail.com>
+maintainer:          Aleksey Uymanov <s9gf4ult@gmail.com>
 category:            Database
 build-type:          Simple
 cabal-version:       >=1.8
@@ -25,7 +25,7 @@
   ghc-prof-options: -auto-all
 
   build-depends:       base < 5
-                     , hdbi >= 1.1.0
+                     , hdbi >= 1.2.0
                      , direct-sqlite
                      , text
                      , blaze-builder
@@ -42,7 +42,7 @@
                  , blaze-builder
                  , bytestring
                  , direct-sqlite
-                 , hdbi >= 1.1.0
-                 , hdbi-tests >= 1.1.0
+                 , hdbi >= 1.2.0
+                 , hdbi-tests >= 1.2.0
                  , test-framework
                  , text
