diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+2020-07-16 v0.6.3.2
+	* Add support for GHC 8.8.4
 2020-06-13 v0.6.3.1
 	* Always print "=>" in ConDecl (for GHC >= 8.6) by @zliu41
 2020-03-26 v0.6.3
diff --git a/ghc-exactprint.cabal b/ghc-exactprint.cabal
--- a/ghc-exactprint.cabal
+++ b/ghc-exactprint.cabal
@@ -1,5 +1,5 @@
 name:                ghc-exactprint
-version:             0.6.3.1
+version:             0.6.3.2
 synopsis:            ExactPrint for GHC
 description:         Using the API Annotations available from GHC 7.10.2, this
                      library provides a means to round trip any code that can
@@ -43,6 +43,7 @@
                    , GHC == 8.8.1
                    , GHC == 8.8.2
                    , GHC == 8.8.3
+                   , GHC == 8.8.4
                    , GHC == 8.10.1
 extra-source-files:  ChangeLog
                      src-ghc710/Language/Haskell/GHC/ExactPrint/*.hs
@@ -123,7 +124,7 @@
       build-depends: ghc-boot
   hs-source-dirs:      src
 
-  if impl (ghc > 8.8.3)
+  if impl (ghc > 8.8.4)
       hs-source-dirs: src-ghc810
   else
     if impl (ghc > 8.6.5)
@@ -155,7 +156,7 @@
   else
     hs-source-dirs:      tests
 
-  if impl (ghc > 8.8.3)
+  if impl (ghc > 8.8.4)
       hs-source-dirs: src-ghc810
   else
     if impl (ghc > 8.6.5)
