diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,5 @@
+1.0.3.0 - 2022-01-20 - Support ghc-8.10
+
 1.0.2.0 - 2020-03-05 - Support ghc-8.8.2
 
 1.0.1.0 - 2019-05-22 - Support hspec-2.2 through hspec-2.7
diff --git a/hspec-snap.cabal b/hspec-snap.cabal
--- a/hspec-snap.cabal
+++ b/hspec-snap.cabal
@@ -1,5 +1,5 @@
 name:                hspec-snap
-version:             1.0.2.0
+version:             1.0.3.0
 synopsis:            A library for testing with Hspec and the Snap Web Framework
 homepage:            https://github.com/dbp/hspec-snap
 license:             BSD3
@@ -9,18 +9,19 @@
 extra-source-files:  CHANGELOG
 category:            Web, Snap
 build-type:          Simple
-cabal-version:       >=1.8
+cabal-version:       1.18
 source-repository head
   type:     git
   location: https://github.com/dbp/hspec-snap
 
 library
+  default-language: Haskell2010
   exposed-modules:
         Test.Hspec.Snap
   hs-source-dirs:  src
-  build-depends:   base                     >= 4.6      && < 4.14
-                 , aeson                    >= 0.6      && < 1.5
-                 , bytestring               >= 0.9      && < 0.11
+  build-depends:   base                     >= 4.6      && < 5
+                 , aeson                    >= 0.6      && < 1.6
+                 , bytestring               >= 0.9      && < 0.12
                  , containers               >= 0.4      && < 0.7
                  , digestive-functors       >= 0.7      && < 0.9
                  , hspec                    >= 2.2      && < 2.8
@@ -37,6 +38,7 @@
 
 
 Test-Suite test-hspec-snap
+  default-language: Haskell2010
   type:            exitcode-stdio-1.0
   hs-source-dirs:  spec
   main-is:         Main.hs
