packages feed

tasty-rerun 1.1.3 → 1.1.4

raw patch · 3 files changed

+8/−3 lines, 3 filesdep ~basedep ~taggedPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, tagged

API changes (from Hackage documentation)

Files

Changelog.md view
@@ -1,3 +1,7 @@+# 1.1.4++* Supports base <= 4.9, tagged <= 0.9+ # 1.1.3  * Supports tasty =< 0.11
src/Test/Tasty/Ingredients/Rerun.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE DeriveDataTypeable #-}+{-# LANGUAGE FlexibleContexts #-} module Test.Tasty.Ingredients.Rerun (rerunningTests) where  import Prelude hiding (filter)
tasty-rerun.cabal view
@@ -1,5 +1,5 @@ name:                tasty-rerun-version:             1.1.3+version:             1.1.4 homepage:            http://github.com/ocharles/tasty-rerun license:             BSD3 license-file:        LICENSE@@ -72,14 +72,14 @@ library   exposed-modules:     Test.Tasty.Ingredients.Rerun   build-depends:-    base >=4.6 && <4.8,+    base >=4.6 && <4.9,     containers >= 0.5.0.0,     mtl >= 2.1.2,     optparse-applicative >= 0.6,     reducers >= 3.10.1,     split >= 0.1 && < 0.3,     stm >= 2.4.2,-    tagged >= 0.7 && <0.8,+    tagged >= 0.7 && <0.9,     tasty >=0.10 && <0.11,     transformers >= 0.3.0.0   hs-source-dirs:      src