From bc77be1c11e5aec895f93558c2c8950c473aeb6a Mon Sep 17 00:00:00 2001 From: Preetham Gujjula Date: Wed, 11 Dec 2024 07:39:45 -0800 Subject: [PATCH] Allow tasty-bench-0.4 Cherry-pick from [1]. Resolves out-of-bounds issue described in [2]. [1]: 76df8bec787fdb5572f5e6ce95559df93660134c [2]: https://github.com/commercialhaskell/stackage/issues/7480 --- apply-merge.cabal | 2 +- package.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apply-merge.cabal b/apply-merge.cabal index f7bf223..400d0b0 100644 --- a/apply-merge.cabal +++ b/apply-merge.cabal @@ -115,7 +115,7 @@ benchmark apply-merge-benchmarks , data-ordlist ==0.4.* , pqueue >=1.4 && <1.5 || >=1.5 && <1.6 , reflection ==2.1.* - , tasty-bench ==0.3.* + , tasty-bench >=0.3 && <0.4 || >=0.4 && <0.5 , transformers >=0.5 && <0.6 || >=0.6 && <0.7 , vector >=0.12 && <0.13 || >=0.13 && <0.14 default-language: GHC2021 diff --git a/package.yaml b/package.yaml index 04ba457..1925297 100644 --- a/package.yaml +++ b/package.yaml @@ -89,6 +89,6 @@ benchmarks: - data-ordlist ^>= {0.4} - pqueue ^>= {1.4, 1.5} - reflection ^>= {2.1} - - tasty-bench ^>= {0.3} + - tasty-bench ^>= {0.3, 0.4} - transformers ^>= {0.5, 0.6} - vector ^>= {0.12, 0.13}