diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,11 +1,16 @@
 # ChangeLog for classy-prelude
 
+## 1.5.0.3
+
+* Don't import Data.Functor.unzip [#215](https://github.com/snoyberg/mono-traversable/pull/215)
+
 ## 1.5.0.2
+
 * Fix building with time >= 1.10 [#207](https://github.com/snoyberg/mono-traversable/pull/207).
 
 ## 1.5.0.1
 
-* Export a compatiblity shim for `parseTime` as it has been removed in `time-1.10`.
+* Export a compatibility shim for `parseTime` as it has been removed in `time-1.10`.
   See <https://hackage.haskell.org/package/time-1.12/changelog>
 
 ## 1.5.0
diff --git a/classy-prelude.cabal b/classy-prelude.cabal
--- a/classy-prelude.cabal
+++ b/classy-prelude.cabal
@@ -1,11 +1,11 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.4.
+-- This file has been generated from package.yaml by hpack version 0.35.1.
 --
 -- see: https://github.com/sol/hpack
 
 name:           classy-prelude
-version:        1.5.0.2
+version:        1.5.0.3
 synopsis:       A typeclass-based Prelude.
 description:    See docs and README at <http://www.stackage.org/package/classy-prelude>
 category:       Control, Prelude
diff --git a/src/ClassyPrelude.hs b/src/ClassyPrelude.hs
--- a/src/ClassyPrelude.hs
+++ b/src/ClassyPrelude.hs
@@ -153,7 +153,7 @@
 
 import qualified Prelude
 import Control.Applicative ((<**>),liftA,liftA2,liftA3,Alternative (..), optional)
-import Data.Functor
+import Data.Functor hiding (unzip)
 import Control.Exception (assert)
 import Control.DeepSeq (deepseq, ($!!), force, NFData (..))
 import Control.Monad (when, unless, void, liftM, ap, forever, join, replicateM_, guard, MonadPlus (..), (=<<), (>=>), (<=<), liftM2, liftM3, liftM4, liftM5)
