diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,16 @@
 # hslua-aeson
 
+## v1.0.2
+
+Released 2020-05-28
+
+- Relaxed version constraint for aeson, allowing `aeson-1.5.*`.
+
+- Update CI tests to check with GHC versions 8.0 through 8.10.
+  Compilation with GHC 7.10 is no longer tested.
+
+- Bump to stackage LTS-14.
+
 ## v1.0.1
 
 Released 2020-04-03
diff --git a/hslua-aeson.cabal b/hslua-aeson.cabal
--- a/hslua-aeson.cabal
+++ b/hslua-aeson.cabal
@@ -1,5 +1,6 @@
+cabal-version:       2.2
 name:                hslua-aeson
-version:             1.0.1
+version:             1.0.2
 synopsis:            Allow aeson data types to be used with lua.
 description:         This package provides instances to push and receive any
                      datatype encodable as JSON to and from the Lua stack.
@@ -13,8 +14,14 @@
 build-type:          Simple
 extra-source-files:  README.md
                      changelog.md
-cabal-version:       >=1.10
+tested-with:         GHC == 8.0.2
+                   , GHC == 8.2.2
+                   , GHC == 8.4.3
+                   , GHC == 8.6.5
+                   , GHC == 8.8.3
+                   , GHC == 8.10.1
 
+
 source-repository head
   type:     git
   location: https://github.com/hslua/hslua-aeson
@@ -23,7 +30,7 @@
   hs-source-dirs:      src
   exposed-modules:     Foreign.Lua.Aeson
   build-depends:       base                 >= 4.7     && < 5
-                     , aeson                >= 0.11    && < 1.5
+                     , aeson                >= 0.11    && < 1.6
                      , hashable             >= 1.2     && < 1.4
                      , hslua                >= 1.0     && < 1.2
                      , scientific           >= 0.3     && < 0.4
