diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## [1.0.0.2] - 2023-10-04
+
+### Changed
+
+* Forward compatibility with `persistent` requiring `TypeOperators`.
+
 ## [1.0.0.1] - 2022-08-30
 
 ### Added
diff --git a/bench/Main.hs b/bench/Main.hs
--- a/bench/Main.hs
+++ b/bench/Main.hs
@@ -10,6 +10,7 @@
 {-# LANGUAGE TemplateHaskell #-}
 {-# LANGUAGE TypeApplications #-}
 {-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE TypeOperators #-}
 {-# LANGUAGE UndecidableInstances #-}
 
 module Main where
diff --git a/genvalidity-persistent.cabal b/genvalidity-persistent.cabal
--- a/genvalidity-persistent.cabal
+++ b/genvalidity-persistent.cabal
@@ -1,11 +1,11 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.7.
+-- This file has been generated from package.yaml by hpack version 0.35.2.
 --
 -- see: https://github.com/sol/hpack
 
 name:           genvalidity-persistent
-version:        1.0.0.1
+version:        1.0.0.2
 synopsis:       GenValidity support for Persistent
 category:       Testing
 homepage:       https://github.com/NorfairKing/validity#readme
diff --git a/src/Data/GenValidity/Persist.hs b/src/Data/GenValidity/Persist.hs
--- a/src/Data/GenValidity/Persist.hs
+++ b/src/Data/GenValidity/Persist.hs
@@ -1,7 +1,8 @@
 {-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE ScopedTypeVariables #-}
 {-# LANGUAGE UndecidableInstances #-}
-{-# OPTIONS_GHC -fno-warn-orphans #-}
+{-# OPTIONS_GHC -Wno-orphans #-}
+{-# OPTIONS_GHC -Wno-redundant-constraints #-}
 
 module Data.GenValidity.Persist where
 
diff --git a/test/Data/GenValidity/PersistSpec.hs b/test/Data/GenValidity/PersistSpec.hs
--- a/test/Data/GenValidity/PersistSpec.hs
+++ b/test/Data/GenValidity/PersistSpec.hs
@@ -10,6 +10,7 @@
 {-# LANGUAGE TemplateHaskell #-}
 {-# LANGUAGE TypeApplications #-}
 {-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE TypeOperators #-}
 {-# LANGUAGE UndecidableInstances #-}
 
 module Data.GenValidity.PersistSpec
