diff --git a/TypingTester.cabal b/TypingTester.cabal
--- a/TypingTester.cabal
+++ b/TypingTester.cabal
@@ -1,11 +1,11 @@
 name:                TypingTester
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Command Line Typing speed tester
 description:         Prompts the user to type anything they wish. Notifies them of how long it took.
 license:             GPL-3
 license-file:        LICENSE
 author:              Alan Hawkins
-maintainer:          hawk.alan@gmailcom
+maintainer:          hawk.alan@gmail.com
 homepage:            https://github.com/xpika/typingtester
 category:            Game
 build-type:          Simple
@@ -14,7 +14,7 @@
 
 executable typingtester
   Main-Is: typingtester.hs
-  build-depends:       base ==4.5.* , time
+  build-depends:       base <10000 , time <10000
 
 source-repository head
   type:     git
diff --git a/typingtester.hs b/typingtester.hs
--- a/typingtester.hs
+++ b/typingtester.hs
@@ -4,7 +4,7 @@
 import System.IO
 import Text.Printf
 
-hPutStrFlush h str = hPutStr h str >> hFlush h 
+hPutStrFlush h str = putStr str >> hFlush h 
 
 
 main = 
