diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,19 +1,33 @@
+# 1.1.3
+
+## Other Changes
+
+* Increase the upper bound of `time` to allow < 1.9
+
+---
+
 # 1.1.2
 
 * Increase upper bound on `base`, `async`, `snap`, `time` and `transformers`.
 * `lifted-base` is now used instead of `MonadCatchIO-transformers`, as it is
   actively maintained.
 
+---
+
 # 1.1.1
 
 * Increase upper bound on `base`, `snap`, `time`, `transformers`.
 
+---
+
 # 1.1.0
 
 * Add an upper bound on the amount of errors collected. This means that even
   when things go horribly wrong in other code, you at least won't run out of
   memory by collecting all the exceptions! Thanks to @gregorycollins for
   this advice.
+
+---
 
 # 1.0.0
 
diff --git a/snap-error-collector.cabal b/snap-error-collector.cabal
--- a/snap-error-collector.cabal
+++ b/snap-error-collector.cabal
@@ -1,5 +1,5 @@
 name: snap-error-collector
-version: 1.1.2
+version: 1.1.3
 synopsis: Collect errors in batches and dispatch them
 homepage: http://github.com/ocharles/snap-error-collector
 license: BSD3
@@ -21,7 +21,7 @@
     monad-loops >= 0.4.2.1 && < 0.5,
     snap >= 0.13.3.1 && < 1.1,
     stm >= 2.4.3 && < 2.5,
-    time >= 1.4.2 && < 1.8,
+    time >= 1.4.2 && < 1.9,
     transformers >= 0.3.0.0 && < 0.6
   hs-source-dirs: src
   default-language: Haskell2010
