diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -2,13 +2,21 @@
 Change Log
 ==========
 
+Version 0.8.0.2 (2016-09-04) *World Sexual Health Day*
+------------------------------------------------------
+
+#### Package changes
+
+* Fix test suite: add missing module `OverloadedStrings`
+  ([Sergei Trofimovich](https://github.com/trofi))
+
 Version 0.8.0.1 (2016-07-29) *58th Anniversary of the Creation of NASA*
 -----------------------------------------------------------------------
 
 #### Package changes
 
 * Change QuickCheck lower bound to 2.9 for GHC >= 8 (base >= 4.9)
-  ([Adam Bergmark](https://github.com/bergmark)])
+  ([Adam Bergmark](https://github.com/bergmark))
 
 Version 0.8 (2016-07-17) *Constitution Day in South Korea*
 ----------------------------------------------------------
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 # Difference Lists in Haskell
 
-[![Build Status](https://travis-ci.org/spl/dlist.png?branch=master)](https://travis-ci.org/spl/dlist)
-[![Hackage](https://budueba.com/hackage/dlist)](https://hackage.haskell.org/package/dlist)
+[![Travis CI](https://img.shields.io/travis/spl/dlist.svg?maxAge=2592000)](https://travis-ci.org/spl/dlist)
+[![Hackage](https://img.shields.io/hackage/v/dlist.svg?maxAge=2592000)](https://hackage.haskell.org/package/dlist)
 
 ## Summary
 
diff --git a/dlist.cabal b/dlist.cabal
--- a/dlist.cabal
+++ b/dlist.cabal
@@ -1,5 +1,5 @@
 name:                   dlist
-version:                0.8.0.1
+version:                0.8.0.2
 synopsis:               Difference lists
 description:
   Difference lists are a list-like type supporting O(1) append. This is
@@ -40,6 +40,7 @@
 test-suite test
   type:                 exitcode-stdio-1.0
   main-is:              Main.hs
+  other-modules:        OverloadedStrings
   hs-source-dirs:       tests
   build-depends:        dlist,
                         base,
diff --git a/tests/OverloadedStrings.hs b/tests/OverloadedStrings.hs
new file mode 100644
--- /dev/null
+++ b/tests/OverloadedStrings.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE OverloadedStrings #-}
+
+module OverloadedStrings (testOverloadedStrings) where
+
+import Data.DList
+
+testOverloadedStrings :: IO ()
+testOverloadedStrings = print $ "OverloadedStrings:" `append` " success"
