diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@
 `wai-rate-limit-postgres` uses [PVP Versioning][1].
 The changelog is available [on GitHub][2].
 
+## 0.3.0.0
+
+* Removed unnecessary debug prints
+
 ## 0.2.0.0
 
 * Fix bug in table name reference (#1)
diff --git a/src/Network/Wai/RateLimit/Postgres.hs b/src/Network/Wai/RateLimit/Postgres.hs
--- a/src/Network/Wai/RateLimit/Postgres.hs
+++ b/src/Network/Wai/RateLimit/Postgres.hs
@@ -86,7 +86,6 @@
 pgBackendIncAndGetUsage :: Pool PG.Connection -> Text -> ByteString -> Integer -> IO (Either PGBackendError Integer)
 pgBackendIncAndGetUsage p tableName key usage = withResource p $ \c -> do
   res <- try $ PG.query c incAndGetQuery (key, usage) `catches` sqlHandlers
-  print res
   return $ do
     rows <- res
     case rows of
@@ -110,7 +109,6 @@
 
 pgBackendExpireIn :: Pool PG.Connection -> Text -> ByteString -> Integer -> IO (Either PGBackendError ())
 pgBackendExpireIn p tableName key seconds = withResource p $ \c -> do
-  putText "Called expire in!"
   res <- try $ PG.execute c expireInQuery (seconds, key) `catches` sqlHandlers
   return $ do
     count <- res
diff --git a/wai-rate-limit-postgres.cabal b/wai-rate-limit-postgres.cabal
--- a/wai-rate-limit-postgres.cabal
+++ b/wai-rate-limit-postgres.cabal
@@ -1,6 +1,6 @@
 cabal-version:       3.0
 name:                wai-rate-limit-postgres
-version:             0.2.0.0
+version:             0.3.0.0
 category:            Security, Web, Network
 synopsis:            See README for more info
 description:
