Relax version bounds on base
Closed this issue · 1 comments
zenhack commented
The cabal file current restricts base to <4.13
, which is quite old at this point. Current is 4.16
; would be good to update.
FWIW, for my own stuff I've settled into just putting in <5
; while technically speaking 4.17 would be a breaking release, in practice base is very very stable, and none of my own codebases have ever been broken by an update. Whereas it's very common to have builds fail on a newer compiler because one of a project's dependencies expects an old version of base.
rcook commented