diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Revision history for quotet
 
+## 0.0.1.0 -- 2022-04-20
+
+* Support GHC 9.2.
+* Disable `exceptions` flag by default.
+
 ## 0.0.0.1 -- 2021-07-08
 
 * Documentation fixes.
diff --git a/quotet.cabal b/quotet.cabal
--- a/quotet.cabal
+++ b/quotet.cabal
@@ -1,6 +1,6 @@
 cabal-version: 2.4
 name: quotet
-version: 0.0.0.1
+version: 0.0.1.0
 
 synopsis: Monad transformer for Quote from template-haskell
 description:
@@ -22,7 +22,7 @@
 
 flag exceptions
   description: Support instances from exceptions
-  default: True
+  default: False
   manual: True
 
 flag semigroupoids
@@ -49,7 +49,7 @@
     Control.Monad.Quote.Internal
   build-depends:
       base >= 4.14 && < 5
-    , template-haskell >= 2.16 && < 2.18
+    , template-haskell >= 2.16 && < 2.19
     , th-compat >= 0.1.2
     , mtl ^>= 2.2
   if flag(exceptions)
