diff options
author | David Waern <david.waern@gmail.com> | 2009-11-28 13:56:54 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2009-11-28 13:56:54 +0000 |
commit | a37eb41cff093672afa1d60b43ac27110b82a8f5 (patch) | |
tree | 83d8788cada6269e3f2acae13dc9f2d77707cf8a /haddock.cabal | |
parent | 70361f06e3ea982a2f56d87501ce31d2f29f7e58 (diff) |
Require at least GHC 6.12
While regression testing Haddock, I found a bug that happens with GHC 6.10.3,
but not with GHC 6.12-rc2 (haven't tried 6.10.4). I don't have time to track it
down.
I think we should just always require the latest major GHC version. The time
spent on making Haddock work with older versions is too high compared to the
time spent on bugfixing, refactoring and features.
Diffstat (limited to 'haddock.cabal')
-rw-r--r-- | haddock.cabal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock.cabal b/haddock.cabal index 131d6203..a382eddc 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -72,7 +72,7 @@ executable haddock containers, array, Cabal >= 1.5, - ghc >= 6.10 && < 6.14 + ghc >= 6.12 && < 6.14 if flag(in-ghc-tree) cpp-options: -DIN_GHC_TREE |