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
@@ -4,17 +4,7 @@
 {-# LANGUAGE Safe #-}
 #endif
 
--------------------------------------------------------------------------------
--- |
--- Module     : Control.Concurrent.Thread.Delay
--- Copyright  : 2011 Bas van Dijk & Roel van Dijk
--- License    : BSD3 (see the file LICENSE)
--- Maintainer : Bas van Dijk <v.dijk.bas@gmail.com>
---            , Roel van Dijk <vandijk.roel@gmail.com>
---
--- Arbitrarily long thread delays.
--------------------------------------------------------------------------------
-
+-- | Arbitrarily long thread delays.
 module Control.Concurrent.Thread.Delay ( delay ) where
 
 
diff --git a/Control/Concurrent/Timeout.hs b/Control/Concurrent/Timeout.hs
--- a/Control/Concurrent/Timeout.hs
+++ b/Control/Concurrent/Timeout.hs
@@ -4,17 +4,7 @@
 {-# LANGUAGE Safe #-}
 #endif
 
--------------------------------------------------------------------------------
--- |
--- Module     : Control.Concurrent.Timeout
--- Copyright  : 2011 Bas van Dijk & Roel van Dijk
--- License    : BSD3 (see the file LICENSE)
--- Maintainer : Bas van Dijk <v.dijk.bas@gmail.com>
---            , Roel van Dijk <vandijk.roel@gmail.com>
---
--- Wait arbitrarily long for an IO computation to finish.
--------------------------------------------------------------------------------
-
+-- | Wait arbitrarily long for an IO computation to finish.
 module Control.Concurrent.Timeout ( timeout, Timeout, timeoutWithPred ) where
 
 
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2011-2012 Bas van Dijk & Roel van Dijk
+Copyright (c) 2011-2020 Bas van Dijk & Roel van Dijk
 
 All rights reserved.
 
diff --git a/unbounded-delays.cabal b/unbounded-delays.cabal
--- a/unbounded-delays.cabal
+++ b/unbounded-delays.cabal
@@ -1,12 +1,12 @@
 name:          unbounded-delays
-version:       0.1.1.0
-cabal-version: >= 1.6
+version:       0.1.1.1
+cabal-version: >= 1.10
 build-type:    Simple
 author:        Bas van Dijk <v.dijk.bas@gmail.com>
-               Roel van Dijk <vandijk.roel@gmail.com>
+               Roel van Dijk <roel@lambdacube.nl>
 maintainer:    Bas van Dijk <v.dijk.bas@gmail.com>
-               Roel van Dijk <vandijk.roel@gmail.com>
-copyright:     2011-2012 Bas van Dijk & Roel van Dijk
+               Roel van Dijk <roel@lambdacube.nl>
+copyright:     2011-2020 Bas van Dijk & Roel van Dijk
 license:       BSD3
 license-file:  LICENSE
 homepage:      https://github.com/basvandijk/unbounded-delays
@@ -25,7 +25,8 @@
   Location: git://github.com/basvandijk/unbounded-delays.git
 
 library
-  build-depends: base >= 4 && < 5
+  default-language: Haskell98
+  build-depends: base >= 4.4 && < 5
   exposed-modules: Control.Concurrent.Thread.Delay
                  , Control.Concurrent.Timeout
   ghc-options: -Wall
