diff --git a/Development/IncludeFile.hs b/Development/IncludeFile.hs
--- a/Development/IncludeFile.hs
+++ b/Development/IncludeFile.hs
@@ -16,7 +16,7 @@
 -- > $(includeFileInSource "foo.png" "myImage")
 -- >
 --
---   This defines the @myImage@ value with type 'S.ByteString' and with the content of the file @foo.png@.
+--   This defines the @myImage@ value with type 'B.ByteString' and with the content of the file @foo.png@.
 --
 -- = Using 'includeFileInSource'
 --
diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -5,7 +5,7 @@
 import Control.Monad (replicateM)
 
 main :: IO ()
-main = do
+main =
   defaultMainWithHooks $
     simpleUserHooks
       { preBuild = \_ _ -> do
diff --git a/include-file.cabal b/include-file.cabal
--- a/include-file.cabal
+++ b/include-file.cabal
@@ -1,5 +1,5 @@
 name:                include-file
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            Inclusion of files in executables at compile-time.
 description:         Inclusion of files in source code via Template Haskell.
                      .
@@ -12,6 +12,7 @@
 license-file:        LICENSE
 author:              Daniel Díaz
 maintainer:          dhelta.diaz@gmail.com
+bug-reports:         https://github.com/Daniel-Diaz/include-file/issues
 category:            Development
 build-type:          Custom
 cabal-version:       >= 1.10
@@ -21,7 +22,6 @@
   build-depends: base == 4.*
                , bytestring
                , template-haskell
-               , random
   default-language: Haskell2010
   ghc-options: -Wall
 
