From ccecdba07aec580045fefdd8b72da1e25aa1fb2b Mon Sep 17 00:00:00 2001 From: Ryan Scott <ryan.gl.scott@gmail.com> Date: Tue, 30 Jun 2020 11:21:46 -0400 Subject: [PATCH] Use cabal-version >= 1.10 --- exceptions.cabal | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exceptions.cabal b/exceptions.cabal index 6557f85..37452d3 100644 --- a/exceptions.cabal +++ b/exceptions.cabal @@ -1,7 +1,7 @@ name: exceptions category: Control, Exceptions, Monad version: 0.10.4 -cabal-version: >= 1.8 +cabal-version: >= 1.10 license: BSD3 license-file: LICENSE author: Edward A. Kmett @@ -70,12 +70,14 @@ library ghc-options: -Wall -fwarn-tabs -O2 hs-source-dirs: src + default-language: Haskell2010 test-suite exceptions-tests main-is: Tests.hs other-modules: Control.Monad.Catch.Tests hs-source-dirs: tests ghc-options: -Wall -fwarn-tabs + default-language: Haskell2010 type: exitcode-stdio-1.0 build-depends: base, -- GitLab