diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown
--- a/CHANGELOG.markdown
+++ b/CHANGELOG.markdown
@@ -1,3 +1,7 @@
+4.2.0.1
+-------
+* Avoided using 'type' in the export list, as that doesn't work on 7.4.
+
 4.2
 ---
 * Renamed `-|` to `ProfunctorAdjunction` because GHC 7.4 still exists in the wild.
diff --git a/profunctors.cabal b/profunctors.cabal
--- a/profunctors.cabal
+++ b/profunctors.cabal
@@ -1,6 +1,6 @@
 name:          profunctors
 category:      Control, Categories
-version:       4.2
+version:       4.2.0.1
 license:       BSD3
 cabal-version: >= 1.10
 license-file:  LICENSE
diff --git a/src/Data/Profunctor.hs b/src/Data/Profunctor.hs
--- a/src/Data/Profunctor.hs
+++ b/src/Data/Profunctor.hs
@@ -34,7 +34,7 @@
   , WrappedArrow(..)
   , Forget(..)
 #ifndef HLINT
-  , type (:->)
+  , (:->)
 #endif
   ) where
 
