diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for ghc-prof
 
+## v1.4.1.3 - 2018-07-09
+
+* Relax upper version bound for containers
+
 ## v1.4.1.2 - 2018-05-15
 
 * Relax upper version bound for tasty
diff --git a/ghc-prof.cabal b/ghc-prof.cabal
--- a/ghc-prof.cabal
+++ b/ghc-prof.cabal
@@ -1,5 +1,5 @@
 name: ghc-prof
-version: 1.4.1.2
+version: 1.4.1.3
 synopsis: Library for parsing GHC time and allocation profiling reports
 description: ghc-prof is a library for parsing GHC time and allocation profiling reports.
 homepage: https://github.com/maoe/ghc-prof
@@ -7,14 +7,14 @@
 license-file: LICENSE
 author: Mitsutoshi Aoe
 maintainer: Mitsutoshi Aoe <maoe@foldr.in>
-copyright: Copyright (C) 2013-2017 Mitsutoshi Aoe
+copyright: Copyright (C) 2013-2018 Mitsutoshi Aoe
 category: Development
 build-type: Simple
 extra-source-files:
   CHANGELOG.md
   README.md
 cabal-version: >=1.10
-tested-with: GHC >= 7.6 && <= 8.4.1
+tested-with: GHC >= 7.6 && <= 8.4.3
 
 flag dump
   description: Build the executable "dump"
@@ -31,7 +31,7 @@
   build-depends:
       base >= 4.6 && < 4.12
     , attoparsec < 0.14
-    , containers >= 0.5 && < 0.6
+    , containers >= 0.5 && < 0.7
     , scientific < 0.4
     , text
     , time
