packages feed

th-expand-syns 0.4.10.0 → 0.4.11.0

raw patch · 3 files changed

+11/−2 lines, 3 filesdep ~template-haskelldep ~th-abstractionPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: template-haskell, th-abstraction

API changes (from Hackage documentation)

Files

Language/Haskell/TH/ExpandSyns.hs view
@@ -163,6 +163,10 @@     go (DefaultD {}) = return () #endif +#if MIN_VERSION_template_haskell(2,20,0)+    go (TypeDataD {}) = return ()+#endif+ warnTypeFamiliesInType :: Type -> Q () warnTypeFamiliesInType = go   where
changelog.markdown view
@@ -1,3 +1,8 @@+## 0.4.11.0 [2023.01.31]++* Support `TypeDataD` when building with `template-haskell-2.20.0.0` (GHC 9.6)+  or later.+ ## 0.4.10.0 [2022.07.23]  * Support `DefaultD`, `PromotedInfixT`, and `PromotedUInfixT` when building
th-expand-syns.cabal view
@@ -1,5 +1,5 @@ name:                th-expand-syns-version:             0.4.10.0+version:             0.4.11.0 synopsis:            Expands type synonyms in Template Haskell ASTs description:         Expands type synonyms in Template Haskell ASTs.                      .@@ -41,7 +41,7 @@                        , containers                        , syb                        , th-abstraction   >= 0.4.3 && < 0.5-                       , template-haskell >= 2.5   && < 2.20+                       , template-haskell >= 2.5   && < 2.21     ghc-options:         -Wall     exposed-modules:     Language.Haskell.TH.ExpandSyns     other-modules:       Language.Haskell.TH.ExpandSyns.SemigroupCompat