Skip to content

Commit 7a0a923

Browse files
committed
Bump tar-0.8, and update upper bounds on deprecated constraints
1 parent 7bf3aa9 commit 7a0a923

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

cabal.project

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,10 @@ packages: .
22

33
test-show-details: direct
44

5+
program-options
6+
ghc-options: -Werror
7+
8+
-- enable parallel builds
9+
jobs: $ncpus
10+
semaphore: True
11+

hedgehog-extras.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ common aeson-pretty { build-depends: aeson-pretty
2121
common async { build-depends: async < 2.3 }
2222
common base { build-depends: base >= 4.12 && < 4.22 }
2323
common bytestring { build-depends: bytestring < 0.13 }
24-
common containers { build-depends: containers < 0.8 }
24+
common containers { build-depends: containers < 0.9 }
2525
common deepseq { build-depends: deepseq < 1.6 }
2626
common Diff { build-depends: Diff < 1.1 }
2727
common directory { build-depends: directory < 1.4 }
2828
common exceptions { build-depends: exceptions < 0.11 }
2929
common filepath { build-depends: filepath < 1.6 }
30-
common hedgehog { build-depends: hedgehog < 1.6 }
30+
common hedgehog { build-depends: hedgehog < 1.8 }
3131
common hedgehog-quickcheck { build-depends: hedgehog-quickcheck < 0.2 }
3232
common http-conduit { build-depends: http-conduit < 2.4 }
33-
common lifted-async { build-depends: lifted-async < 0.11 }
33+
common lifted-async { build-depends: lifted-async < 0.12 }
3434
common lifted-base { build-depends: lifted-base < 0.3 }
3535
common mmorph { build-depends: mmorph < 1.3 }
3636
common monad-control { build-depends: monad-control < 1.1 }
@@ -40,14 +40,14 @@ common process { build-depends: process
4040
common resourcet { build-depends: resourcet < 1.4 }
4141
common retry { build-depends: retry >= 0.9 && < 0.10 }
4242
common stm { build-depends: stm < 2.6 }
43-
common tar { build-depends: tar >= 0.6 && < 0.7 }
43+
common tar { build-depends: tar >= 0.7 && < 0.8 }
4444
common tasty { build-depends: tasty < 1.6 }
45-
common tasty-discover { build-depends: tasty-discover >= 5.0.2 && < 5.2 }
45+
common tasty-discover { build-depends: tasty-discover >= 5.0.2 && < 5.3 }
4646
common tasty-hedgehog { build-depends: tasty-hedgehog < 1.5 }
4747
common tasty-quickcheck { build-depends: tasty-quickcheck < 0.11 }
4848
common temporary { build-depends: temporary < 1.4 }
4949
common text { build-depends: text < 2.2 }
50-
common time { build-depends: time >= 1.9.1 && < 1.15 }
50+
common time { build-depends: time >= 1.9.1 && < 1.16 }
5151
common transformers { build-depends: transformers < 0.7 }
5252
common transformers-base { build-depends: transformers-base < 0.5 }
5353
common unliftio { build-depends: unliftio < 0.3 }

src/Hedgehog/Extras/Test/Network.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ downloadToFile url path = GHC.withFrozenCallStack $ do
8686
H.note_ $ "Downloading " <> url <> " to " <> path
8787
H.evalIO $ HTTP.simpleHttp url >>= LBS.writeFile path
8888

89-
tarErrors :: TAR.GenEntries tarPath linkTarget e -> [e]
89+
tarErrors :: TAR.GenEntries content tarPath linkTarget e -> [e]
9090
tarErrors entries = TAR.foldEntries (flip const) id (:) entries []
9191

9292
-- | Download a github commit to a temporary directory, extract it and return the path to the extracted directory.

src/Hedgehog/Extras/Test/Unit.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
66
{-# LANGUAGE ImportQualifiedPost #-}
77
{-# LANGUAGE MultiParamTypeClasses #-}
8-
{-# LANGUAGE TypeApplications #-}
98
{-# LANGUAGE TypeFamilies #-}
109
{-# LANGUAGE UndecidableInstances #-}
1110

0 commit comments

Comments
 (0)