diff --git a/Control/Concurrent/Thread/Delay.hs b/Control/Concurrent/Thread/Delay.hs
--- a/Control/Concurrent/Thread/Delay.hs
+++ b/Control/Concurrent/Thread/Delay.hs
@@ -51,6 +51,3 @@
   let maxWait = min time $ toInteger (maxBound ∷ Int)
   threadDelay $ fromInteger maxWait
   when (maxWait /= time) $ delay (time - maxWait)
-
-
--- The End ---------------------------------------------------------------------
diff --git a/Control/Concurrent/Timeout.hs b/Control/Concurrent/Timeout.hs
--- a/Control/Concurrent/Timeout.hs
+++ b/Control/Concurrent/Timeout.hs
@@ -112,6 +112,3 @@
                             (killThread)
                             (\_ → fmap Just f)
                    )
-
-
--- The End ---------------------------------------------------------------------
diff --git a/unbounded-delays.cabal b/unbounded-delays.cabal
--- a/unbounded-delays.cabal
+++ b/unbounded-delays.cabal
@@ -1,5 +1,5 @@
 name:          unbounded-delays
-version:       0.1.0.2
+version:       0.1.0.3
 cabal-version: >= 1.6
 build-type:    Custom
 author:        Bas van Dijk <v.dijk.bas@gmail.com>
@@ -9,7 +9,7 @@
 copyright:     2011 Bas van Dijk & Roel van Dijk
 license:       BSD3
 license-file:  LICENSE
-homepage:      https://github.com/basvandijk/unbounded-delays/
+homepage:      https://github.com/basvandijk/unbounded-delays
 bug-reports:   https://github.com/basvandijk/unbounded-delays/issues
 category:      Concurrency
 synopsis:      Unbounded thread delays and timeouts
@@ -25,7 +25,7 @@
   Location: git://github.com/basvandijk/unbounded-delays.git
 
 library
-  build-depends: base >= 4 && < 4.5
+  build-depends: base >= 4 && < 4.6
   exposed-modules: Control.Concurrent.Thread.Delay
                  , Control.Concurrent.Timeout
   ghc-options: -Wall
