diff options
-rw-r--r-- | libraries/template-haskell/changelog.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libraries/template-haskell/changelog.md b/libraries/template-haskell/changelog.md index 864abe52bf..3620d22e2f 100644 --- a/libraries/template-haskell/changelog.md +++ b/libraries/template-haskell/changelog.md @@ -4,6 +4,12 @@ * Bundled with GHC 7.12.1 + * The compiler can now resolve infix operator fixities in types on its own. + The `UInfixT` constructor of `Type` is analoguous to `UInfixE` for expressions + and can contain a tree of infix type applications which will be reassociated + according to the fixities of the operators. The `ParensT` constructor can be + used to explicitly group expressions. + * TODO: document API changes and important bugfixes |