compdata 0.6.1.3 → 0.6.1.4
raw patch · 2 files changed
+8/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- compdata.cabal +1/−1
- src/Data/Comp/Derive/Utils.hs +7/−0
compdata.cabal view
@@ -1,5 +1,5 @@ Name: compdata-Version: 0.6.1.3+Version: 0.6.1.4 Synopsis: Compositional Data Types Description:
src/Data/Comp/Derive/Utils.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} -------------------------------------------------------------------------------- -- | -- Module : Data.Comp.Derive.Utils@@ -18,6 +19,12 @@ import Language.Haskell.TH.Syntax import Control.Monad import Language.Haskell.TH.ExpandSyns++-- reportError is introduced only from version 7.6 of GHC+#if __GLASGOW_HASKELL__ < 706+reportError :: String -> Q ()+reportError = report True+#endif {-| This is the @Q@-lifted version of 'abstractNewtypeQ.