diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,8 +1,12 @@
 # Changelog for [`deepseq` package](http://hackage.haskell.org/package/deepseq)
 
-## 1.4.1.0  *Mar 2015*
+## 1.4.1.1  *Mar 2015*
 
   * Bundled with GHC 7.10.1
+  * Drop redundant `ghc-prim` dependency
+
+## 1.4.1.0  *Mar 2015*
+
   * Drop redundant constraints from a few `NFData` instances (if
     possible for a given `base` version)
 
diff --git a/deepseq.cabal b/deepseq.cabal
--- a/deepseq.cabal
+++ b/deepseq.cabal
@@ -1,5 +1,5 @@
 name:           deepseq
-version:        1.4.1.0
+version:        1.4.1.1
 -- NOTE: Don't forget to update ./changelog.md
 license:        BSD3
 license-file:   LICENSE
@@ -44,7 +44,9 @@
       Safe
       TypeOperators
 
-    build-depends: ghc-prim >= 0.2 && < 0.4
+    -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4
+    if impl(ghc < 7.6)
+      build-depends: ghc-prim == 0.2.*
 
   build-depends: base       >= 4.3 && < 4.9,
                  array      >= 0.3 && < 0.6
