diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2021-03-17 19:58:44 -0400 |
---|---|---|
committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2021-03-20 15:12:12 -0400 |
commit | 91ddac2f859a8fb37e2a295f94676c9705fe0227 (patch) | |
tree | df6d44370ebaeba2d114fe18948ad73d32c48a86 | |
parent | c53faa0c1d1535954b54649b475e8945260e4c45 (diff) | |
download | haskell-91ddac2f859a8fb37e2a295f94676c9705fe0227.tar.gz |
Move miscategorized items in template-haskell changelog
-rw-r--r-- | libraries/template-haskell/changelog.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libraries/template-haskell/changelog.md b/libraries/template-haskell/changelog.md index 29d9ce70e2..7fc538b8cf 100644 --- a/libraries/template-haskell/changelog.md +++ b/libraries/template-haskell/changelog.md @@ -1,6 +1,12 @@ # Changelog for [`template-haskell` package](http://hackage.haskell.org/package/template-haskell) ## 2.18.0.0 + * The types of `ConP` and `conP` have been changed to allow for an additional list + of type applications preceding the argument patterns. + + * Add support for the `Char` kind (#11342): we extend the `TyLit` data type with + the constructor `CharTyLit` that reflects type-level characters. + * Add `putDoc` and `getDoc` which allow Haddock documentation to be attached to module headers, declarations, function arguments and instances, as well as queried. These are quite low level operations, so for convenience there @@ -42,12 +48,6 @@ * The argument to `TExpQ` can now be levity polymorphic. - * The types of `ConP` and `conP` have been changed to allow for an additional list - of type applications preceding the argument patterns. - - * 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 *Jan 2020* * Bundled with GHC 8.10.1 |