diff --git a/linear.cabal b/linear.cabal
--- a/linear.cabal
+++ b/linear.cabal
@@ -1,6 +1,6 @@
 name:          linear
 category:      Math, Algebra
-version:       1.10.1.1
+version:       1.10.1.2
 license:       BSD3
 cabal-version: >= 1.8
 license-file:  LICENSE
@@ -43,7 +43,7 @@
     semigroupoids        >= 3     && < 5,
     tagged               >= 0.4.4 && < 1,
     template-haskell     >= 2.7   && < 3.0,
-    transformers         >= 0.2   && < 0.4,
+    transformers         >= 0.2   && < 0.5,
     unordered-containers >= 0.2.3 && < 0.3,
     vector               >= 0.10  && < 0.11,
     void                 >= 0.6   && < 1
diff --git a/src/Linear/V2.hs b/src/Linear/V2.hs
--- a/src/Linear/V2.hs
+++ b/src/Linear/V2.hs
@@ -111,13 +111,13 @@
 
 instance Apply V2 where
   V2 a b <.> V2 d e = V2 (a d) (b e)
-  {-@ INLINE (<.>) #-}
+  {-# INLINE (<.>) #-}
 
 instance Applicative V2 where
   pure a = V2 a a
   {-# INLINE pure #-}
   V2 a b <*> V2 d e = V2 (a d) (b e)
-  {-@ INLINE (<*>) #-}
+  {-# INLINE (<*>) #-}
 
 instance Hashable a => Hashable (V2 a) where
   hashWithSalt s (V2 a b) = s `hashWithSalt` a `hashWithSalt` b
