diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -6,6 +6,9 @@
 	read default language from $LANG (hFlush!)
 	daemon?
 
+0.7.7	2011.03.03
+	deps update (no more haskell98)
+
 0.7.6	2011.12.30
 	added Japanese (Jens Petersen)
 
diff --git a/INSTALL b/INSTALL
--- a/INSTALL
+++ b/INSTALL
@@ -1,4 +1,4 @@
-fuzzytime 0.7.6 (2011.12.30)
+fuzzytime 0.7.7 (2012.03.03)
 A clock and timer that tell the time in a more human way (the 'ten past six'-style)
 
 
diff --git a/README b/README
--- a/README
+++ b/README
@@ -15,7 +15,7 @@
 
 ### --help
 A clock and timer that tell the time in a more human way.
-v0.7.6, 2011.12.30, *antispam*, GPL3+
+v0.7.7, 2012.03.03, *antispam*, GPL3+
 
 fuzzytime [COMMAND] ... [OPTIONS]
 
diff --git a/fuzzytime.cabal b/fuzzytime.cabal
--- a/fuzzytime.cabal
+++ b/fuzzytime.cabal
@@ -1,5 +1,5 @@
 name:                fuzzytime
-version:             0.7.6
+version:             0.7.7
 description:         A clock and timer that tell the time in a more human way (the 'ten past six' style)
 synopsis:            A 'ten past six' style clock
 category:            Utils
@@ -36,10 +36,10 @@
 executable fuzzytime
     buildable:       True
     main-is:         fuzzytime.hs
-    build-depends:   base >= 4 && < 5, cmdargs, haskell98, old-time, process
+    build-depends:   base >= 4 && < 5, cmdargs, directory, old-time, process
     hs-source-dirs:  src
 
 source-repository this
     type:            git
     location:        https://github.com/caminoix/fuzzytime
-    tag:             0.7.6
+    tag:             0.7.7
diff --git a/src/fuzzytime.1 b/src/fuzzytime.1
--- a/src/fuzzytime.1
+++ b/src/fuzzytime.1
@@ -1,4 +1,4 @@
-.TH fuzzytime 1 "December 30, 2011" "version 0.7.6" "A fuzzy clock and timer"
+.TH fuzzytime 1 "March 3, 2012" "version 0.7.7" "A fuzzy clock and timer"
 
 .\" -------------------------------------------------------------------------------------
 
diff --git a/src/fuzzytime.hs b/src/fuzzytime.hs
--- a/src/fuzzytime.hs
+++ b/src/fuzzytime.hs
@@ -41,9 +41,9 @@
 import Control.Monad (when)
 import Data.Char (isDigit)
 import Data.List (intercalate)
-import Directory (removeFile)
 import System.Cmd (system)
 import System.Console.CmdArgs
+import System.Directory (removeFile)
 import System.Environment (getEnv)
 import System.Exit (ExitCode (ExitFailure), exitFailure)
 import System.Time (getClockTime)
@@ -183,7 +183,7 @@
 
 -- | \[config] Help message for summary
 confHelpSummary :: String
-confHelpSummary = "A clock and timer that tell the time in a more human way.\nv0.7.6, 2011.12.30, kamil.stachowski@gmail.com, GPL3+"
+confHelpSummary = "A clock and timer that tell the time in a more human way.\nv0.7.7, 2012.03.03, kamil.stachowski@gmail.com, GPL3+"
 
 
 -- check --------------------------------------------------------------------------------------------------------------------------------------------------------------------------
