diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright Vanessa McHale (c) 2018
+Copyright Vanessa McHale (c) 2018-2019
 
 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 
diff --git a/Setup.hs b/Setup.hs
deleted file mode 100644
--- a/Setup.hs
+++ /dev/null
@@ -1,2 +0,0 @@
-import Distribution.Simple
-main = defaultMain
diff --git a/shake-literate.cabal b/shake-literate.cabal
--- a/shake-literate.cabal
+++ b/shake-literate.cabal
@@ -1,10 +1,10 @@
 cabal-version: 1.18
 name: shake-literate
-version: 0.1.0.0
+version: 0.1.0.1
 license: BSD3
 license-file: LICENSE
-copyright: Copyright: (c) 2018 Vanessa McHale
-maintainer: vanessa.mchale@iohk.io
+copyright: Copyright: (c) 2018-2019 Vanessa McHale
+maintainer: vamchale@gmail.com
 author: Vanessa McHale
 bug-reports: https://hub.darcs.net/vmchale/shake-literate/issues
 synopsis: Rules for building literate programs in shake
@@ -36,13 +36,13 @@
         base >=4.3 && <5,
         shake >=0.14,
         cpphs -any
-    
+
     if flag(development)
         ghc-options: -Werror
-    
+
     if impl(ghc >=8.0)
         ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates
                      -Wredundant-constraints -Wnoncanonical-monad-instances
-    
+
     if impl(ghc >=8.4)
         ghc-options: -Wmissing-export-lists
diff --git a/src/Development/Shake/Literate.hs b/src/Development/Shake/Literate.hs
--- a/src/Development/Shake/Literate.hs
+++ b/src/Development/Shake/Literate.hs
@@ -29,7 +29,7 @@
 unlitA :: FilePath -- ^ Literate source file
        -> FilePath -- ^ Generated source
        -> Action ()
-unlitA inF outF = liftIO (g =<< readFile inF)
+unlitA inF outF = traced ("cpphs (" ++ outF ++ ")") (g =<< readFile inF)
     where g = writeFile outF . unlit inF
 
 literateRules :: String -- ^ File extension
