updated the default package version

This commit is contained in:
Yann Esposito (Yogsototh) 2014-04-19 08:19:45 +02:00
parent 7fd9c74d8f
commit 46bd0d4122

View file

@ -25,7 +25,7 @@ executable {{projectName}}
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7
build-depends: base >=4.6
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
@ -36,7 +36,7 @@ library
, {{moduleName}}.Coconut
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7
build-depends: base >=4.6
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
@ -46,7 +46,8 @@ executable test-{{projectName}}
ghc-options: -Wall
main-is: Test.hs
default-language: Haskell2010
build-depends: base ==4.6.*, Cabal >= 1.16.0
build-depends: base >=4.6
, Cabal >= 1.16.0
, {{projectName}}
, HUnit
, QuickCheck
@ -62,7 +63,8 @@ test-suite Tests
main-is: Test.hs
Type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base ==4.6.*, Cabal >= 1.16.0
build-depends: base >=4.6
, Cabal >= 1.16.0
, {{projectName}}
, HUnit
, QuickCheck