mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-11-22 03:52:12 +03:00
Bump tasty upper bound to <1.6
This commit is contained in:
parent
30c678f5ec
commit
1c2bba5050
@ -15,7 +15,12 @@ main = C.defaultMain (T.foldTestTree mkBench mempty tests)
|
||||
|
||||
-- | Turn a test tree into a list of benchmarks.
|
||||
mkBench :: T.TreeFold [C.Benchmark]
|
||||
#if MIN_VERSION_tasty(1,4,0)
|
||||
#if MIN_VERSION_tasty(1,5,0)
|
||||
mkBench = T.trivialFold
|
||||
{ T.foldSingle = \opts lbl t -> [C.bench lbl (benchTest opts t)]
|
||||
, T.foldGroup = \_ lbl bs -> map (C.bgroup lbl) bs
|
||||
}
|
||||
#elif MIN_VERSION_tasty(1,4,0)
|
||||
mkBench = T.trivialFold
|
||||
{ T.foldSingle = \opts lbl t -> [C.bench lbl (benchTest opts t)]
|
||||
, T.foldGroup = \_ lbl bs -> [C.bgroup lbl bs]
|
||||
|
@ -7,6 +7,15 @@ standard Haskell versioning scheme.
|
||||
.. _PVP: https://pvp.haskell.org/
|
||||
|
||||
|
||||
unreleased
|
||||
----------
|
||||
|
||||
Miscellaneous
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
* The upper bound on :hackage:`tasty` is <1.6.
|
||||
|
||||
|
||||
2.1.0.0 (2022-08-31)
|
||||
--------------------
|
||||
|
||||
|
@ -40,6 +40,6 @@ library
|
||||
, dejafu >=2.0 && <2.5
|
||||
, random >=1.0 && <1.3
|
||||
, tagged >=0.8 && <0.9
|
||||
, tasty >=0.10 && <1.5
|
||||
, tasty >=0.10 && <1.6
|
||||
-- hs-source-dirs:
|
||||
default-language: Haskell2010
|
||||
|
Loading…
Reference in New Issue
Block a user