burrito 2.0.1.7 → 2.0.1.8
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bytestring
API changes (from Hackage documentation)
Files
- burrito.cabal +2/−2
- source/test-suite/Main.hs +1/−1
burrito.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.2 name: burrito-version: 2.0.1.7+version: 2.0.1.8 synopsis: Parse and render URI templates. description:@@ -40,7 +40,7 @@ common library build-depends: , base >= 4.16.0 && < 4.20- , bytestring >= 0.11.3 && < 0.12+ , bytestring >= 0.11.3 && < 0.13 , containers >= 0.6.5 && < 0.7 , parsec >= 3.1.15 && < 3.2 , template-haskell >= 2.18.0 && < 2.22
source/test-suite/Main.hs view
@@ -56,7 +56,7 @@ matches `Hspec.shouldSatisfy` elem values Monad.forM_ matches $ \match -> do let it = Burrito.expand match template- Monad.when (it /= output) . fail $+ Monad.when (it /= output) . Hspec.expectationFailure $ show (input, values, output, matches, match, it)