diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.4.5.0
+
+* New minor release (microlens-0.4.5).
+
 # 0.4.4.0
 
 * New minor release (microlens-0.4.4).
diff --git a/microlens-ghc.cabal b/microlens-ghc.cabal
--- a/microlens-ghc.cabal
+++ b/microlens-ghc.cabal
@@ -1,5 +1,5 @@
 name:                microlens-ghc
-version:             0.4.4.0
+version:             0.4.5.0
 synopsis:            microlens + array, bytestring, containers, transformers
 description:
   Use this package instead of <http://hackage.haskell.org/package/microlens microlens> if you don't mind depending on all dependencies here – @Lens.Micro.GHC@ reexports everything from @Lens.Micro@ and additionally provides orphan instances of microlens classes for packages coming with GHC (<http://hackage.haskell.org/package/array array>, <http://hackage.haskell.org/package/bytestring bytestring>, <http://hackage.haskell.org/package/containers containers>, <http://hackage.haskell.org/package/transfromers transformers>).
@@ -32,7 +32,7 @@
                      , base >=4.5 && <5
                      , bytestring >=0.9.1.10 && <0.11
                      , containers >=0.4.0 && <0.6
-                     , microlens ==0.4.4.*
+                     , microlens ==0.4.5.*
                      , transformers >=0.2 && <0.6
 
   ghc-options:
diff --git a/src/Lens/Micro/GHC.hs b/src/Lens/Micro/GHC.hs
--- a/src/Lens/Micro/GHC.hs
+++ b/src/Lens/Micro/GHC.hs
@@ -85,12 +85,6 @@
 #endif
 
 
-(<&>) :: Functor f => f a -> (a -> b) -> f b
-as <&> f = f <$> as
-{-# INLINE (<&>) #-}
-
-infixl 1 <&>
-
 type instance Index   (Map k a) = k
 type instance IxValue (Map k a) = a
 type instance Index   (IntMap a) = Int
