packages feed

include-file 0.1.0.1 → 0.1.0.2

raw patch · 3 files changed

+4/−4 lines, 3 filesdep −randomsetup-changedPVP ok

version bump matches the API change (PVP)

Dependencies removed: random

API changes (from Hackage documentation)

Files

Development/IncludeFile.hs view
@@ -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' --
Setup.hs view
@@ -5,7 +5,7 @@ import Control.Monad (replicateM)  main :: IO ()-main = do+main =   defaultMainWithHooks $     simpleUserHooks       { preBuild = \_ _ -> do
include-file.cabal view
@@ -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