packages feed

apiary 0.14.0 → 0.14.0.1

raw patch · 3 files changed

+8/−4 lines, 3 filesdep ~case-insensitivePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: case-insensitive

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -10,6 +10,7 @@ * abolish ':' query document api. use (??) function. * deprecated () route decument api. use []. + # 0.13.0 * Option that generate full embed documentation. * Add precondition, rpHtml functions.@@ -19,6 +20,7 @@ * multi action * use route string as id of html + # 0.12.8 * Option that doesn't generate documentation. * Change fail of ActionT behaviour.@@ -27,6 +29,7 @@ ## API documentation page * collapse + # 0.12.5 * Enhance API documentation. * Description using variable.@@ -46,6 +49,7 @@  ## apiary-clientsession * Add prefix SessionConfig fields.+  # 0.10.0 * wai-3.0.
apiary.cabal view
@@ -1,5 +1,5 @@ name:                apiary-version:             0.14.0+version:             0.14.0.1 synopsis:            Simple and type safe web framework that can be automatically generate API documentation. description:   Simple and type safe web framework that can be automatically generate API documentation.@@ -109,7 +109,7 @@                      , exceptions           >=0.6   && <0.7                      , blaze-html           >=0.7   && <0.8                      , blaze-markup         >=0.6   && <0.7-                     , case-insensitive     >=1.2   && <1.3+                     , case-insensitive     >=1.1   && <1.3    if impl(ghc < 7.8)     build-depends:     tagged               >=0.7   && <0.8
src/Control/Monad/Apiary/Filter/Internal/Capture/TH.hs view
@@ -29,8 +29,8 @@     (t, st) -> case break (`elem` ")]") st of         (_:'$':b, ")") -> do             reportWarning "DEPRECATED () description. use []."-            s <- lookupValueName b-            maybe (fail $ b ++ " not found.") (return . (t,) . N) s+            v <- lookupValueName b+            maybe (fail $ b ++ " not found.") (return . (t,) . N) v         (_:b,     ")") -> do             reportWarning "DEPRECATED () description. use []."             return (t, S b)