diff --git a/Database/Redis/Redis.hs b/Database/Redis/Redis.hs
--- a/Database/Redis/Redis.hs
+++ b/Database/Redis/Redis.hs
@@ -418,7 +418,7 @@
          -> s                   -- ^ target key
          -> Int                 -- ^ timeout in seconds
          -> IO (Reply Int)
-expireAt r key timestamp = withState r (\rs -> sendCommand rs (CMBulk ["EXPIRE", toBS key, toBS timestamp]) >> recv rs)
+expireAt r key timestamp = withState r (\rs -> sendCommand rs (CMBulk ["EXPIREAT", toBS key, toBS timestamp]) >> recv rs)
 
 -- | Return the remining time to live of the key or -1 if key has no
 -- associated timeout
diff --git a/redis.cabal b/redis.cabal
--- a/redis.cabal
+++ b/redis.cabal
@@ -1,5 +1,5 @@
 Name:                redis
-Version:             0.7
+Version:             0.7.1
 License:             MIT
 Maintainer:          Alexander Bogdanov <andorn@gmail.com>
 Author:              Alexander Bogdanov <andorn@gmail.com>
@@ -21,6 +21,8 @@
 	- new commands added: watch, unwatch
 	.
 	- new batch command: run_cas
+	.
+	- fixed bug with expireAt - thanks to Alex Suraci
 	.
 
 Stability:           beta
