diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2016-06-24 14:42:26 -0400 |
---|---|---|
committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2016-06-24 14:42:26 -0400 |
commit | 31b58065baf967fc8e82b058179f028cbb56dfe2 (patch) | |
tree | 47fd80f4f95c2fbe0b73531ecf12add0b96120a7 /libraries/template-haskell/changelog.md | |
parent | 9bc22330dea6a89109b5537ad52ea9669384a49e (diff) | |
download | haskell-31b58065baf967fc8e82b058179f028cbb56dfe2.tar.gz |
Clean up outdated comments in template-haskell changelog
* Replaced 2.11's *TBA* with *May 2016*
* Removed an outdated TODO comment
* Removed lines which incorrectly stated that some strictness-related
functions had been removed (they have been deprecated instead)
Diffstat (limited to 'libraries/template-haskell/changelog.md')
-rw-r--r-- | libraries/template-haskell/changelog.md | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libraries/template-haskell/changelog.md b/libraries/template-haskell/changelog.md index e746cb54fc..5cd8ad83e8 100644 --- a/libraries/template-haskell/changelog.md +++ b/libraries/template-haskell/changelog.md @@ -1,6 +1,6 @@ # Changelog for [`template-haskell` package](http://hackage.haskell.org/package/template-haskell) -## 2.11.0.0 *TBA* +## 2.11.0.0 *May 2016* * Bundled with GHC 8.0.1 @@ -30,9 +30,8 @@ in Haskell source code (`SourceUnpackedness` and `SourceStrictness`, as well as `Bang`), and one for strictness information after a constructor is compiled (`DecidedStrictness`). `Strict`, `StrictType` and `VarStrictType` - have been deprecated in favor of `Bang`, `BangType` and `VarBangType`, and - three functions (`isStrict`, `isLazy`, and `unpack`) were removed because - they no longer serve any use in this new design. (#10697) + have been deprecated in favor of `Bang`, `BangType` and `VarBangType`. + (#10697) * Add `reifyConStrictness` to query a data constructor's `DecidedStrictness` values for its fields (#10697) @@ -45,8 +44,6 @@ * Add `MonadFail Q` instance for GHC 8.0 and later (#11661) - * TODO: document API changes and important bugfixes - * Add support for OVERLAP(S/PED/PING) pragmas on instances |