wai-route 0.3.1.1 → 0.3.1.2
raw patch · 3 files changed
+11/−7 lines, 3 filesdep ~QuickCheckdep ~tastydep ~tasty-quickcheckPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, tasty, tasty-quickcheck
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- test/Test/Network/Wai/Route.hs +2/−2
- wai-route.cabal +5/−5
+ CHANGELOG.md view
@@ -0,0 +1,4 @@+## 0.3.1.2++ * Adapt to QuickCheck >= 2.10+
test/Test/Network/Wai/Route.hs view
@@ -56,12 +56,12 @@ k $ responseLBS status200 [] L.empty genDir :: Gen ByteString-genDir = C.pack <$> listOf1 arbitrary `suchThat` f+genDir = C.pack <$> listOf1 arbitraryASCIIChar `suchThat` f where f d = head d /= ':' && '/' `notElem` d genCapture :: Gen ByteString-genCapture = (":"<>) . C.pack <$> listOf1 arbitrary `suchThat` notElem '/'+genCapture = (":"<>) . C.pack <$> listOf1 arbitraryASCIIChar `suchThat` notElem '/' genRoute :: Gen ByteString genRoute = do
wai-route.cabal view
@@ -1,5 +1,5 @@ name: wai-route-version: 0.3.1.1+version: 0.3.1.2 synopsis: Minimalistic, efficient routing for WAI description: .@@ -16,7 +16,7 @@ copyright: 2014 Roman S. Borschel category: Web build-type: Simple-extra-source-files: README.md, sample/*.hs+extra-source-files: README.md, sample/*.hs, CHANGELOG.md cabal-version: >=1.10 source-repository head@@ -57,8 +57,8 @@ , bytestring , http-types , mtl >= 2.1- , QuickCheck >= 2.5- , tasty >= 0.8- , tasty-quickcheck >= 0.8.1+ , QuickCheck >= 2.10+ , tasty >= 0.11+ , tasty-quickcheck >= 0.9 , wai , wai-route