shake-dhall 0.1.1.0 → 0.1.1.1
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- shake-dhall.cabal +1/−1
- src/Development/Shake/Dhall.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # shake-dhall +## 0.1.1.1++ * Documentation typos+ ## 0.1.1.0 * Add functions `dhallDeps` and `needDhallCli` in `Development.Shake.Dhall`
shake-dhall.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: shake-dhall-version: 0.1.1.0+version: 0.1.1.1 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2020 Vanessa McHale
src/Development/Shake/Dhall.hs view
@@ -15,7 +15,7 @@ needDhall fps = need =<< liftIO (nubOrd . concat . (fps:) <$> traverse getAllFileDeps fps) --- | Same as 'needDhallCli' but shells out to the command-linen executable+-- | Same as 'needDhall' but shells out to the command-line executable -- -- @since 0.1.1.0 needDhallCli :: [FilePath] -> Action ()