packages feed

wai-app-static 3.0.0 → 3.0.0.1

raw patch · 2 files changed

+9/−3 lines, 2 filesdep ~optparse-applicativedep ~timePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: optparse-applicative, time

API changes (from Hackage documentation)

Files

WaiAppStatic/CmdLine.hs view
@@ -38,6 +38,12 @@     , host :: String     } +#if MIN_VERSION_optparse_applicative(0, 10, 0)+option' = option auto+#else+option' = option+#endif+ args :: Parser Args args = Args     <$> strOption@@ -52,7 +58,7 @@            <> metavar "INDEX"            <> help "index files to serve when a directory is required"             )))-    <*> option+    <*> option'             ( long "port"            <> short 'p'            <> metavar "PORT"
wai-app-static.cabal view
@@ -1,9 +1,9 @@ name:            wai-app-static-version:         3.0.0+version:         3.0.0.1 license:         MIT license-file:    LICENSE author:          Michael Snoyman <michael@snoyman.com>-maintainer:      Michael Snoyman <michael@snoyman.com>+maintainer:      Michael Snoyman <michael@snoyman.com>, Greg Weber <greg@gregweber.info> synopsis:        WAI application for static serving description:     Also provides some helper functions and datatypes for use outside of WAI. category:        Web, Yesod