diff --git a/hasql-implicits.cabal b/hasql-implicits.cabal
--- a/hasql-implicits.cabal
+++ b/hasql-implicits.cabal
@@ -1,5 +1,5 @@
 name:          hasql-implicits
-version:       0.1.1.1
+version:       0.1.1.2
 synopsis:
   Implicit definitions for Hasql, such as default codecs for standard types
 
diff --git a/library/Hasql/Implicits/Encoders.hs b/library/Hasql/Implicits/Encoders.hs
--- a/library/Hasql/Implicits/Encoders.hs
+++ b/library/Hasql/Implicits/Encoders.hs
@@ -67,24 +67,26 @@
   defaultParam = (nullable . array . dimension foldlStrict . dimension foldlStrict . element . nullable) ENCODER; \
 }
 
-INSTANCES (Char, char)
-INSTANCES (Double, float8)
-INSTANCES (Float, float4)
-INSTANCES (Int16, int2)
-INSTANCES (Int32, int4)
-INSTANCES (Int64, int8)
-INSTANCES (ByteString, bytea)
-INSTANCES (Scientific, numeric)
-INSTANCES (Text, text)
-INSTANCES (UTCTime, timestamptz)
-INSTANCES (Aeson.Value, jsonb)
-INSTANCES (UUID, uuid)
-INSTANCES (Day, date)
-INSTANCES (DiffTime, interval)
-INSTANCES (TimeOfDay, time)
-INSTANCES (LocalTime, timestamp)
-INSTANCES ((TimeOfDay, TimeZone), timetz)
-INSTANCES ((NetAddr IP), inet)
-INSTANCES (Bool, bool)
+{- ORMOLU_DISABLE -}
+INSTANCES(Char, char)
+INSTANCES(Double, float8)
+INSTANCES(Float, float4)
+INSTANCES(Int16, int2)
+INSTANCES(Int32, int4)
+INSTANCES(Int64, int8)
+INSTANCES(ByteString, bytea)
+INSTANCES(Scientific, numeric)
+INSTANCES(Text, text)
+INSTANCES(UTCTime, timestamptz)
+INSTANCES(Aeson.Value, jsonb)
+INSTANCES(UUID, uuid)
+INSTANCES(Day, date)
+INSTANCES(DiffTime, interval)
+INSTANCES(TimeOfDay, time)
+INSTANCES(LocalTime, timestamp)
+INSTANCES((TimeOfDay, TimeZone), timetz)
+INSTANCES((NetAddr IP), inet)
+INSTANCES(Bool, bool)
+{- ORMOLU_ENABLE -}
 
 #undef INSTANCES
