diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-10-28 22:25:05 -0400 |
---|---|---|
committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-10-28 22:25:05 -0400 |
commit | e8a652f65318cf60e856f7c2777a003eba10ddc6 (patch) | |
tree | 0165cb96bff4d3ec6fa770142810d51e7d87f37e /compiler/ghc.cabal.in | |
parent | 5126764be614cc43b435e3f5ff34ea593c30269a (diff) | |
download | haskell-e8a652f65318cf60e856f7c2777a003eba10ddc6.tar.gz |
Bump template-haskell version to 2.15.0.0
Summary:
Commit 512eeb9bb9a81e915bfab25ca16bc87c62252064
(`More explicit foralls (GHC Proposal 0007)`) introduced breaking
changes to the Template Haskell AST. As a consequence of this, there
are libraries in the wild that now fail to build on GHC HEAD (for
instance, `th-abstraction`).
This properly bumps the `template-haskell` library's version number
to `2.15.0.0` so that these libraries can guard against these changes
using `MIN_VERSION_template_haskell`.
Test Plan: ./validate
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, carter
GHC Trac Issues: #15818
Differential Revision: https://phabricator.haskell.org/D5272
Diffstat (limited to 'compiler/ghc.cabal.in')
-rw-r--r-- | compiler/ghc.cabal.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghc.cabal.in b/compiler/ghc.cabal.in index 5c9d88f8cc..f952b88805 100644 --- a/compiler/ghc.cabal.in +++ b/compiler/ghc.cabal.in @@ -64,7 +64,7 @@ Library containers >= 0.5 && < 0.7, array >= 0.1 && < 0.6, filepath >= 1 && < 1.5, - template-haskell == 2.14.*, + template-haskell == 2.15.*, hpc == 0.6.*, transformers == 0.5.*, ghc-boot == @ProjectVersionMunged@, |