packages feed

shake-plus 0.1.5.0 → 0.1.6.0

raw patch · 3 files changed

+10/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for shake-plus +## v0.1.6.0++* Re-export `Path` and `Within`.+ ## v0.1.5.0  * Add `getDirectoryFilesWithinIO` and `getDirectoryFilesWithinIO'`
shake-plus.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 6699df4e285e18169a0f843645c0ab9d915cec197ed7dcaa40b4785e6a8fdd3c+-- hash: 861ea5df05f1818cdcfc03fd0764e56a7f8674c369d58a742d0e1973cfb1eb86  name:           shake-plus-version:        0.1.5.0+version:        0.1.6.0 synopsis:       Re-export of Shake using well-typed paths and ReaderT. description:    Re-export of Shake using well-typed paths and ReaderT. You can thread logging through your Shake Actions, and better keep track of source and output folders using the Within type. category:       development, shake
src/Development/Shake/Plus.hs view
@@ -8,6 +8,8 @@ , module Development.Shake.Plus.Loaders , module Development.Shake.Plus.Oracle , module Development.Shake.Plus.Temp+, module Path+, module Within ) where  import Development.Shake.Plus.Cache@@ -19,3 +21,5 @@ import Development.Shake.Plus.Loaders import Development.Shake.Plus.Oracle import Development.Shake.Plus.Temp+import Path+import Within