hedgehog-extras 0.6.4.0 → 0.6.5.0
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~basedep ~tarPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, tar
API changes (from Hackage documentation)
Files
hedgehog-extras.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.4 name: hedgehog-extras-version: 0.6.4.0+version: 0.6.5.0 synopsis: Supplemental library for hedgehog description: Supplemental library for hedgehog. category: Test@@ -19,7 +19,7 @@ common aeson { build-depends: aeson >= 2.0.0.0 } common aeson-pretty { build-depends: aeson-pretty >= 0.8.5 } common async { build-depends: async }-common base { build-depends: base >= 4.12 && < 4.20 }+common base { build-depends: base >= 4.12 && < 4.21 } common bytestring { build-depends: bytestring } common deepseq { build-depends: deepseq } common Diff { build-depends: Diff }@@ -38,7 +38,7 @@ common process { build-depends: process } common resourcet { build-depends: resourcet } common stm { build-depends: stm }-common tar { build-depends: tar < 0.6 }+common tar { build-depends: tar ^>= 0.6 } common tasty { build-depends: tasty } common tasty-hedgehog { build-depends: tasty-hedgehog } common tasty-quickcheck { build-depends: tasty-quickcheck }
src/Hedgehog/Extras/Test/Network.hs view
@@ -86,7 +86,7 @@ H.note_ $ "Downloading " <> url <> " to " <> path H.evalIO $ HTTP.simpleHttp url >>= LBS.writeFile path -tarErrors :: TAR.Entries (Either TAR.FormatError TAR.TarBombError) -> [Either TAR.FormatError TAR.TarBombError]+tarErrors :: TAR.GenEntries tarPath linkTarget e -> [e] tarErrors entries = TAR.foldEntries (flip const) id (:) entries [] -- | Download a github commit to a temporary directory, extract it and return the path to the extracted directory.