diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,15 @@
 # Pretty library change log
 
+## 1.1.1.3 -- 21st December, 2014
+
+* Remove upper bound on `deepseq` package to fix build issues with
+  latest GHC.
+
 ## 1.1.1.2 -- 18th August, 2014
 
-* Add NFData and Eq instances (by Ivan Lazar Miljenovic)
+* Add NFData and Eq instances (by Ivan Lazar Miljenovic).
 
-## 1.1.1.1
+## 1.1.1.1 -- 27th October, 2013
 
 * Update pretty cabal file and readme.
 * Fix tests to work with latest quickcheck.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 # Pretty : A Haskell Pretty-printer library
 
+[![Hackage version](https://img.shields.io/hackage/v/pretty.svg?style=flat)](https://hackage.haskell.org/package/pretty) [![Build Status](https://img.shields.io/travis/haskell/pretty.svg?style=flat)](https://travis-ci.org/haskell/pretty)
+
 Pretty is a pretty-printing library, a set of API's that provides a
 way to easily print out text in a consistent format of your choosing.
 This is useful for compilers and related tools.
diff --git a/pretty.cabal b/pretty.cabal
--- a/pretty.cabal
+++ b/pretty.cabal
@@ -1,5 +1,5 @@
 name:          pretty
-version:       1.1.1.2
+version:       1.1.1.3
 synopsis:      Pretty-printing library
 description:
         This package contains a pretty-printing library, a set of API's
@@ -31,7 +31,7 @@
         Text.PrettyPrint
         Text.PrettyPrint.HughesPJ
     build-depends: base >= 3 && < 5,
-                   deepseq >= 1.1 && < 1.4
+                   deepseq >= 1.1
     extensions: CPP, BangPatterns
     ghc-options: -Wall -fwarn-tabs
 
@@ -40,6 +40,7 @@
     hs-source-dirs: tests
                     src
     build-depends: base >= 3 && < 5,
+                   deepseq >= 1.1,
                    QuickCheck >= 2.5 && <3
     main-is: Test.hs
     other-modules:
diff --git a/src/Text/PrettyPrint/HughesPJ.hs b/src/Text/PrettyPrint/HughesPJ.hs
--- a/src/Text/PrettyPrint/HughesPJ.hs
+++ b/src/Text/PrettyPrint/HughesPJ.hs
@@ -806,7 +806,7 @@
 data Style
   = Style { mode           :: Mode  -- ^ The rendering mode
           , lineLength     :: Int   -- ^ Length of line, in chars
-          , ribbonsPerLine :: Float -- ^ Ratio of ribbon length to line length
+          , ribbonsPerLine :: Float -- ^ Ratio of line length to ribbon length
           }
 
 -- | The default style (@mode=PageMode, lineLength=100, ribbonsPerLine=1.5@).
