packages feed

ghc-tcplugin-api 0.20.0.0 → 0.20.1.0

raw patch · 3 files changed

+8/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ GHC.Builtins: cTupleTyConName :: Arity -> Name
+ GHC.Builtins: isCTupleTyConName :: Name -> Bool

Files

changelog.md view
@@ -1,3 +1,9 @@+
+# Version 0.20.1.0 (2026-09-01)
+
+- Add `cTupleTyConName` and `isCTupleTyConName` to the export list of
+  `GHC.Builtins`.
+
 # Version 0.20.0.0 (2026-09-01)
 
 - Preliminary support for GHC 10.2 (with the known-entities refactor).
ghc-tcplugin-api.cabal view
@@ -1,6 +1,6 @@ cabal-version:  3.0
 name:           ghc-tcplugin-api
-version:        0.20.0.0
+version:        0.20.1.0
 synopsis:       An API for type-checker plugins.
 license:        BSD-3-Clause
 build-type:     Simple
src/GHC/Builtins.hs view
@@ -85,6 +85,7 @@     -- * Tuples and sums
   , tupleTyCon, tupleDataCon, promotedTupleDataCon
   , sumTyCon, sumDataCon
+  , cTupleTyConName, isCTupleTyConName
   , mkTupleTy, mkBoxedTupleTy, mkSumTy
   , mkListTy, mkPromotedListTy
 #if MIN_VERSION_ghc(8,10,0)