diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+[1.0.5](https://github.com/guillaume-nargeot/hpc-coveralls/issues?q=milestone:v1.0.5+is:closed)
+-----
+* Allow aeson 1.0 (issue #60)
+
 [1.0.4](https://github.com/guillaume-nargeot/hpc-coveralls/issues?q=milestone:v1.0.4+is:closed)
 -----
 * Fix dependencies to allow aeson 0.11 (issue #58)
diff --git a/hpc-coveralls.cabal b/hpc-coveralls.cabal
--- a/hpc-coveralls.cabal
+++ b/hpc-coveralls.cabal
@@ -1,5 +1,5 @@
 name:           hpc-coveralls
-version:        1.0.4
+version:        1.0.5
 synopsis:       Coveralls.io support for Haskell.
 description:
   This utility converts and sends Haskell projects hpc code coverage to
@@ -55,7 +55,7 @@
     Trace.Hpc.Coveralls.GitInfo,
     Trace.Hpc.Coveralls.Paths
   build-depends:
-    aeson          >= 0.7.1   && <0.12,
+    aeson          >= 0.7.1   && <1.1,
     base           >= 4       && < 5,
     bytestring     >= 0.10    && <0.11,
     Cabal,
@@ -76,7 +76,7 @@
   hs-source-dirs: src
   main-is:        HpcCoverallsMain.hs
   build-depends:
-    aeson          >= 0.7.1   && <0.12,
+    aeson          >= 0.7.1   && <1.1,
     base           >= 4       && < 5,
     bytestring     >= 0.10    && <0.11,
     Cabal,
diff --git a/src/Trace/Hpc/Coveralls/Paths.hs b/src/Trace/Hpc/Coveralls/Paths.hs
--- a/src/Trace/Hpc/Coveralls/Paths.hs
+++ b/src/Trace/Hpc/Coveralls/Paths.hs
@@ -38,7 +38,7 @@
            -> String       -- ^ hpc output base directory
            -> String       -- ^ test suite name
            -> TixModule    -- ^ tix module
-           -> FilePath     -- ^ mix file patch
+           -> FilePath     -- ^ mix file path
 getMixPath mPkgNameVer hpcDir testSuiteName tix = mixDir hpcDir ++ dirName ++ "/"
     where dirName = case span (/= '/') modName of
               (_, []) -> testSuiteName
