diff --git a/quibble-core.cabal b/quibble-core.cabal
--- a/quibble-core.cabal
+++ b/quibble-core.cabal
@@ -1,7 +1,7 @@
 cabal-version:      2.4
 
 name:           quibble-core
-version:        0.1.0.1
+version:        0.1.0.2
 synopsis:       Convenient SQL query language for Haskell (but only for single tables)
 description:    Provides a way to construct conditions suitable for appending to queries in a type-safe way.
 category:       Database
@@ -28,13 +28,13 @@
   default-language: Haskell2010
   build-depends:
     , base ==4.*
-    , containers <0.7
-    , bytestring <0.12
+    , containers <0.9
+    , bytestring <0.13
     , mono-traversable <1.1
     , optics-core <0.5
-    , text <1.3
+    , text <2.2
     , text-conversions <0.4
-    , time <1.14
+    , time <1.16
     , uuid <1.4
 
 test-suite quibble-core-test
@@ -43,9 +43,9 @@
   build-depends:
       base ==4.*
     , quibble-core
-    , hedgehog <1.2
-    , tasty <1.5
-    , tasty-hedgehog <1.3
+    , hedgehog <1.8
+    , tasty <1.6
+    , tasty-hedgehog <1.5
     , tasty-hunit <0.11
   hs-source-dirs: test/lib
   default-language: Haskell2010
diff --git a/src/lib/Database/Quibble.hs b/src/lib/Database/Quibble.hs
--- a/src/lib/Database/Quibble.hs
+++ b/src/lib/Database/Quibble.hs
@@ -9,6 +9,7 @@
 {-# LANGUAGE ScopedTypeVariables    #-}
 {-# LANGUAGE TypeApplications       #-}
 {-# LANGUAGE TypeFamilies           #-}
+{-# LANGUAGE TypeOperators          #-}
 {-# LANGUAGE UndecidableInstances   #-}
 
 module Database.Quibble
