Merge pull request #5 from badosu/support-ghc-4.8

Change base dependency to support 4.7
This commit is contained in:
Justin S. Leitgeb 2014-06-10 12:22:03 -04:00
commit e37b941293

View File

@ -41,7 +41,7 @@ library
, Text.Inflections.Parse.CamelCase
ghc-options: -Wall
build-depends: base >=4.5 && <4.7, parsec, containers
build-depends: base >=4.5 && <4.8, parsec, containers
default-language: Haskell2010
test-suite test
@ -50,7 +50,7 @@ test-suite test
main-is: Suite.hs
build-depends:
inflections
, base >=4.5 && <4.7
, base >=4.5 && <4.8
, test-framework
, HUnit
, QuickCheck