ghc-tcplugins-extra 0.2.3 → 0.2.4
raw patch · 3 files changed
+6/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +3/−0
- ghc-tcplugins-extra.cabal +1/−1
- src/GHC/TcPluginM/Extra.hs +2/−2
CHANGELOG.md view
@@ -1,3 +1,6 @@+## 0.2.4 *March 17th 2018*+* Fix exports+ ## 0.2.3 *March 17th 2018* * Functions for flattening constraints
ghc-tcplugins-extra.cabal view
@@ -1,5 +1,5 @@ name: ghc-tcplugins-extra-version: 0.2.3+version: 0.2.4 synopsis: Utilities for writing GHC type-checker plugins description: Utilities for writing GHC type-checker plugins, such as creating constraints, with a stable API covering multiple
src/GHC/TcPluginM/Extra.hs view
@@ -29,7 +29,7 @@ , lookupName -- * Trace state of the plugin , tracePlugin-#if __GLASGOW_HASKELL__ > 804+#if __GLASGOW_HASKELL__ >= 804 -- * Substitutions , flattenGivens , mkSubst@@ -273,7 +273,7 @@ initializeStaticFlags = return () #endif -#if __GLASGOW_HASKELL__ > 804+#if __GLASGOW_HASKELL__ >= 804 -- | Flattens evidence of constraints by substituting each others equalities. -- -- __NB:__ Should only be used on /[G]iven/ constraints!