firefly 0.2.0.0 → 0.2.1.0
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- firefly.cabal +1/−1
- src/Web/Firefly/Request.hs +1/−1
firefly.cabal view
@@ -1,5 +1,5 @@ name: firefly-version: 0.2.0.0+version: 0.2.1.0 synopsis: A simple HTTP server framework -- description: homepage: https://github.com/ChrisPenner/firefly#readme
src/Web/Firefly/Request.hs view
@@ -127,4 +127,4 @@ pathMatches pattern = checkMatch pattern <$> getPath where checkMatch :: Pattern -> Route -> Bool- checkMatch (T.unpack -> pat) (T.unpack -> rt) = ("^" ++ pat ++ "$") =~ rt+ checkMatch (T.unpack -> pat) (T.unpack -> rt) = rt =~ ("^" ++ pat ++ "$")