wai-route 0.3 → 0.3.1
raw patch · 2 files changed
+4/−5 lines, 2 filesdep ~waiPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: wai
API changes (from Hackage documentation)
- Network.Wai.Route.Tree: instance Monoid (Tree a)
+ Network.Wai.Route.Tree: instance GHC.Base.Monoid (Network.Wai.Route.Tree.Tree a)
- Network.Wai.Route: type Handler m = [(ByteString, ByteString)] -> Request -> (Response -> m ResponseReceived) -> m ResponseReceived
+ Network.Wai.Route: type Handler m = [(ByteString, ByteString)] The captured path parameters. -> Request The matched 'Request'. -> (Response -> m ResponseReceived) The continuation. -> m ResponseReceived
Files
- README.md +2/−2
- wai-route.cabal +2/−3
README.md view
@@ -1,4 +1,4 @@-wai-route+wai-route [](https://travis-ci.org/romanb/wai-route) ======== -Minimalistic, efficient routing for applications using the [WAI](https://github.com/yesodweb/wai). Take a look at the [sample](https://github.com/romanb/wai-route/blob/master/sample/Main.hs).+Minimalistic, efficient routing tree for applications using the [WAI](https://github.com/yesodweb/wai). Take a look at the [sample](https://github.com/romanb/wai-route/blob/master/sample/Main.hs).
wai-route.cabal view
@@ -1,5 +1,5 @@ name: wai-route-version: 0.3+version: 0.3.1 synopsis: Minimalistic, efficient routing for WAI description: .@@ -32,7 +32,7 @@ build-depends: base == 4.*- , wai >= 3.0.2 && < 3.1+ , wai >= 3.0.2 && < 3.3 , unordered-containers >= 0.2 , http-types >= 0.8 , bytestring >= 0.10@@ -47,7 +47,6 @@ default-language: Haskell2010 hs-source-dirs: test main-is: Main.hs- ghc-prof-options: -prof -auto-all ghc-options: -Wall -fwarn-tabs