dhall-docs 1.0.1 → 1.0.2
raw patch · 3 files changed
+12/−4 lines, 3 filesdep ~dhallPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: dhall
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- dhall-docs.cabal +2/−2
- src/Dhall/Docs.hs +6/−2
CHANGELOG.md view
@@ -1,3 +1,7 @@+1.0.2++* [Fix command-line completions for files](https://github.com/dhall-lang/dhall-haskell/pull/2034)+ 1.0.1 * Improved jump to definition support
dhall-docs.cabal view
@@ -1,5 +1,5 @@ Name: dhall-docs-Version: 1.0.1+Version: 1.0.2 Cabal-Version: >=1.10 Build-Type: Simple Tested-With: GHC == 8.6.1@@ -65,7 +65,7 @@ containers , cryptonite < 0.28, directory >= 1.3.0.0 && < 1.4 ,- dhall >= 1.35.0 && < 1.36,+ dhall >= 1.35.0 && < 1.37, file-embed >= 0.0.10.0 , filepath >= 1.4 && < 1.5 , lens-family-core >= 1.0.0 && < 2.2 ,
src/Dhall/Docs.hs view
@@ -53,7 +53,9 @@ <$> Options.Applicative.strOption ( Options.Applicative.long "input" <> Options.Applicative.metavar "INPUT"- <> Options.Applicative.help "Directory of your dhall package" )+ <> Options.Applicative.help "Directory of your dhall package"+ <> Options.Applicative.action "directory"+ ) <*> Options.Applicative.strOption ( Options.Applicative.long "output-link" <> Options.Applicative.metavar "OUTPUT-LINK"@@ -62,7 +64,9 @@ <> "documentation. The path needs to not exist or to be a symlink, " <> "otherwise the tool won't generate any docs at all" )- <> Options.Applicative.value "./docs" )+ <> Options.Applicative.value "./docs"+ <> Options.Applicative.action "directory"+ ) <*> parsePackageNameResolver <*> parseAscii ) <|> parseVersion