packages feed

template-haskell-compat-v0208 0.1.6 → 0.1.7

raw patch · 2 files changed

+7/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ TemplateHaskell.Compat.V0208: conp :: Name -> [Pat] -> Pat

Files

library/TemplateHaskell/Compat/V0208.hs view
@@ -88,3 +88,9 @@   _ -> Nothing #endif +#if MIN_VERSION_template_haskell(2,18,0)+conp :: Name -> [Pat] -> Pat+conp name pats = ConP name [] pats+#else+conp = ConP+#endif
template-haskell-compat-v0208.cabal view
@@ -1,5 +1,5 @@ name: template-haskell-compat-v0208-version: 0.1.6+version: 0.1.7 category: TemplateHaskell, Compatibility synopsis: A backwards compatibility layer for Template Haskell newer than 2.8 homepage: https://github.com/nikita-volkov/template-haskell-compat-v0208