shake-plus 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+4/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +2/−2
- shake-plus.cabal +2/−2
README.md view
@@ -60,11 +60,11 @@ specialized to `Path b Dir`. We provide variants of the file operations and rules that typically accept or return `Path`s or contain callbacks that expect paths and change these to `Within` values. These functions are generally-suffixed `within`. Here is the variant of `getDirectoryFiles` variant which+suffixed `within`. Here is the variant of `getDirectoryFiles` that produces `Within` values. ```{.haskell}-getDirectoryFilesWithin :: MonadAction m => Path b Dir -> [FilePattern] -> m (Within b [(Path Rel File)])+getDirectoryFilesWithin' :: MonadAction m => Path b Dir -> [FilePattern] -> m [Within b (Path Rel File)] ``` You can convert to and from this within-style using `within` and `fromWithin`.
shake-plus.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 14f0a4521bb0093a57163d38df976c873956b39dc67b54f37780fa37c75cf0b7+-- hash: 0d361473d6cd5c2712887ae918987935e10cb6b788db54ab4b8d5a12025a11b0 name: shake-plus-version: 0.1.0.0+version: 0.1.0.1 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