From e7f095765904f1cde3eeaedfc7b277f3f778ac32 Mon Sep 17 00:00:00 2001 From: tom-audm Date: Wed, 18 Mar 2020 11:28:34 -0400 Subject: [PATCH] Update MonadFail version bounds --- Data/Bson.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Bson.hs b/Data/Bson.hs index d12b600..7f59b10 100644 --- a/Data/Bson.hs +++ b/Data/Bson.hs @@ -29,7 +29,7 @@ import Prelude hiding (fail, lookup) #if !MIN_VERSION_base(4,8,0) import Control.Applicative ((<$>)) #endif -#if !MIN_VERSION_base(4,13,0) +#if MIN_VERSION_base(4, 9, 0) import Control.Monad.Fail (MonadFail(fail)) #endif import Control.Monad (foldM)