diff --git a/QuickCheck.cabal b/QuickCheck.cabal
--- a/QuickCheck.cabal
+++ b/QuickCheck.cabal
@@ -1,5 +1,5 @@
 Name: QuickCheck
-Version: 2.11.2
+Version: 2.11.3
 Cabal-Version: >= 1.8
 Build-type: Simple
 License: BSD3
@@ -49,7 +49,7 @@
 source-repository this
   type:     git
   location: https://github.com/nick8325/quickcheck
-  tag:      2.11.2
+  tag:      2.11.3
 
 flag templateHaskell
   Description: Build Test.QuickCheck.All, which uses Template Haskell.
diff --git a/Test/QuickCheck/Test.hs b/Test/QuickCheck/Test.hs
--- a/Test/QuickCheck/Test.hs
+++ b/Test/QuickCheck/Test.hs
@@ -359,11 +359,13 @@
       concat [
         " and " ++
         show (numSuccessShrinks st) ++
-        concat [ "." ++ show (numTryShrinks st) | full, numTryShrinks st > 0 ] ++
+        concat [ "." ++ show (numTryShrinks st) | showNumTryShrinks ] ++
         " shrink" ++
-        (if numSuccessShrinks st == 1 && numTryShrinks st == 0 then "" else "s")
-        | numSuccessShrinks st > 0 || numTryShrinks st > 0 ] ++
+        (if numSuccessShrinks st == 1 && not showNumTryShrinks then "" else "s")
+        | numSuccessShrinks st > 0 || showNumTryShrinks ] ++
       ")"
+      where
+        showNumTryShrinks = full && numTryShrinks st > 0
 
 summary :: State -> [(String, Double)]
 summary st = reverse
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,5 +1,5 @@
-QuickCheck 2.11.1 (released 2018-01-12)
-	* Fix flickering with terminal output.
+QuickCheck 2.11.1 - 2.11.3 (released 2018-01-12)
+	* Cosmetic fixes.
 
 QuickCheck 2.11 (released 2018-01-12)
 	* New features:
