diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+### 0.9.0.2
+
+* Support GHC 8.8
+* Drop support for GHC 8.2
+
 ### 0.9.0.1
 
 * Make tests pass with stack 2.1.1
diff --git a/hint.cabal b/hint.cabal
--- a/hint.cabal
+++ b/hint.cabal
@@ -1,5 +1,5 @@
 name:         hint
-version:      0.9.0.1
+version:      0.9.0.2
 description:
         This library defines an Interpreter monad. It allows to load Haskell
         modules, browse them, type-check and evaluate strings with Haskell
@@ -54,7 +54,7 @@
 
 library
   build-depends: base == 4.*,
-                 ghc >= 8.2 && < 8.8,
+                 ghc >= 8.2 && < 8.9,
                  ghc-paths,
                  ghc-boot,
                  mtl,
@@ -63,7 +63,7 @@
                  random,
                  directory
 
-  if impl(ghc >= 8.4 && < 8.8) {
+  if impl(ghc >= 8.4 && < 8.9) {
       build-depends: temporary
       cpp-options: -DNEED_PHANTOM_DIRECTORY
   }
