diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,3 +1,8 @@
+## 0.6.3
+
+- Drop support for GHC prior 8.8.4
+- Use `Cabal-syntax-3.14`
+
 ## 0.6.2
 
 - Drop support for GHC prior 8.6.5
diff --git a/cabal-install-parsers.cabal b/cabal-install-parsers.cabal
--- a/cabal-install-parsers.cabal
+++ b/cabal-install-parsers.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.2
 name:               cabal-install-parsers
-version:            0.6.2
+version:            0.6.3
 synopsis:           Utilities to work with cabal-install files
 description:
   @cabal-install-parsers@ provides parsers for @cabal-install@ files:
@@ -25,15 +25,15 @@
 category:           Development
 build-type:         Simple
 tested-with:
-  GHC ==8.6.5
-   || ==8.8.4
+  GHC ==8.8.4
    || ==8.10.7
    || ==9.0.2
    || ==9.2.8
    || ==9.4.8
-   || ==9.6.5
-   || ==9.8.2
-   || ==9.10.1
+   || ==9.6.7
+   || ==9.8.4
+   || ==9.10.2
+   || ==9.12.2
 
 extra-source-files:
   Changelog.md
@@ -66,19 +66,19 @@
 
   -- GHC-boot libraries
   build-depends:
-    , base          >=4.12      && <4.21
-    , binary        ^>=0.8.6.0
-    , bytestring    ^>=0.10.8.2 || ^>=0.11.1.0 || ^>=0.12.0.2
-    , Cabal-syntax  ^>=3.12.0.0
-    , containers    ^>=0.6.0.1  || ^>=0.7
-    , deepseq       ^>=1.4.2.0  || ^>=1.5.0.0
-    , directory     ^>=1.3.0.0
-    , filepath      ^>=1.4.1.1  || ^>=1.5.2.0
-    , parsec        ^>=3.1.13.0
-    , pretty        ^>=1.1.3.3
-    , text          ^>=1.2.3.0  || ^>=2.0.1    || ^>=2.1
-    , time          ^>=1.8.0.2  || ^>=1.9.3    || ^>=1.11.1.1 || ^>=1.12.2
-    , transformers  ^>=0.5.2.0  || ^>=0.6.1.0
+    , base          >=4.13.0.0   && <4.22
+    , binary        ^>=0.8.7.0
+    , bytestring    ^>=0.10.10.1 || ^>=0.11.1.0 || ^>=0.12.0.2
+    , Cabal-syntax  ^>=3.14.2.0
+    , containers    ^>=0.6.2.1   || ^>=0.7
+    , deepseq       ^>=1.4.4.0   || ^>=1.5.0.0
+    , directory     ^>=1.3.6.0
+    , filepath      ^>=1.4.2.1   || ^>=1.5.2.0
+    , parsec        ^>=3.1.14.0
+    , pretty        ^>=1.1.3.6
+    , text          ^>=1.2.4.0   || ^>=2.0.1    || ^>=2.1
+    , time          ^>=1.9.3     || ^>=1.11.1.1 || ^>=1.12.2   || ^>=1.14
+    , transformers  ^>=0.5.6.2   || ^>=0.6.1.0
 
   -- extra dependencies
   build-depends:
diff --git a/src/Cabal/Parse.hs b/src/Cabal/Parse.hs
--- a/src/Cabal/Parse.hs
+++ b/src/Cabal/Parse.hs
@@ -8,7 +8,7 @@
     parseWith,
     ParseError (..),
     renderParseError,
-    ) where
+) where
 
 import Control.DeepSeq            (NFData (..))
 import Control.Exception          (Exception (..))
