diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-11-21 02:35:58 -0500 |
---|---|---|
committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2021-03-20 15:12:12 -0400 |
commit | c53faa0c1d1535954b54649b475e8945260e4c45 (patch) | |
tree | 86d3158a46a782af47e19827cb85b5be160deb1e | |
parent | fb939498a3128de49eb149cb291b933825fde518 (diff) | |
download | haskell-c53faa0c1d1535954b54649b475e8945260e4c45.tar.gz |
Clean up TBDs in changelog
(cherry picked from commit 4f334120c8e9cc4aefcbf11d99f169f648af9fde)
-rw-r--r-- | libraries/template-haskell/changelog.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libraries/template-haskell/changelog.md b/libraries/template-haskell/changelog.md index 0a570a89ee..29d9ce70e2 100644 --- a/libraries/template-haskell/changelog.md +++ b/libraries/template-haskell/changelog.md @@ -48,7 +48,9 @@ * Add support for the `Char` kind (#11342): we extend the `TyLit` data type with the constructor `CharTyLit` that reflects type-level characters. -## 2.16.0.0 *TBA* +## 2.16.0.0 *Jan 2020* + + * Bundled with GHC 8.10.1 * Add support for tuple sections. (#15843) The type signatures of `TupE` and `UnboxedTupE` have changed from `[Exp] -> Exp` to `[Maybe Exp] -> Exp`. @@ -72,6 +74,8 @@ ## 2.15.0.0 *May 2019* + * Bundled with GHC 8.8.1 + * In `Language.Haskell.TH.Syntax`, `DataInstD`, `NewTypeInstD`, `TySynEqn`, and `RuleP` now all have a `Maybe [TyVarBndr]` argument, which contains a list of quantified type variables if an explicit `forall` is present, and @@ -94,6 +98,8 @@ ## 2.14.0.0 *September 2018* + * Bundled with GHC 8.6.1 + * Introduce an `addForeignFilePath` function, as well as a corresponding `qAddForeignFile` class method to `Quasi`. Unlike `addForeignFile`, which takes the contents of the file as an argument, `addForeignFilePath` takes |