packages feed

CoreDump 0.1.1.0 → 0.1.2.0

raw patch · 1 files changed

+3/−4 lines, 1 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ CoreDump.Show: Id :: Name -> Type -> IdDetails -> IdInfo -> SId
+ CoreDump.Show: IdInfo :: Arity -> SpecInfo -> Unfolding -> CafInfo -> OneShotInfo -> InlinePragInfo -> OccInfo -> StrictSig -> Demand -> ArityInfo -> SIdInfo
+ CoreDump.Show: TyVar :: Name -> STyVar
+ CoreDump.Show: data SId
+ CoreDump.Show: data SIdInfo
+ CoreDump.Show: data STyVar
+ CoreDump.Show: dynFlags :: DynFlags
+ CoreDump.Show: dynFlags_ref :: IORef DynFlags
+ CoreDump.Show: instance GHC.Show.Show (UniqFM.UniqFM a)
+ CoreDump.Show: instance GHC.Show.Show BasicTypes.Activation
+ CoreDump.Show: instance GHC.Show.Show BasicTypes.CompilerPhase
+ CoreDump.Show: instance GHC.Show.Show BasicTypes.FunctionOrData
+ CoreDump.Show: instance GHC.Show.Show BasicTypes.InlinePragma
+ CoreDump.Show: instance GHC.Show.Show BasicTypes.OccInfo
+ CoreDump.Show: instance GHC.Show.Show BasicTypes.OneShotInfo
+ CoreDump.Show: instance GHC.Show.Show Class.Class
+ CoreDump.Show: instance GHC.Show.Show CoAxiom.Role
+ CoreDump.Show: instance GHC.Show.Show Coercion.Coercion
+ CoreDump.Show: instance GHC.Show.Show Coercion.LeftOrRight
+ CoreDump.Show: instance GHC.Show.Show CoreDump.Show.SId
+ CoreDump.Show: instance GHC.Show.Show CoreDump.Show.SIdInfo
+ CoreDump.Show: instance GHC.Show.Show CoreDump.Show.STyVar
+ CoreDump.Show: instance GHC.Show.Show CoreMonad.CoreToDo
+ CoreDump.Show: instance GHC.Show.Show CoreMonad.FloatOutSwitches
+ CoreDump.Show: instance GHC.Show.Show CoreMonad.PluginPass
+ CoreDump.Show: instance GHC.Show.Show CoreMonad.SimplifierMode
+ CoreDump.Show: instance GHC.Show.Show CoreSyn.AltCon
+ CoreDump.Show: instance GHC.Show.Show CoreSyn.CoreRule
+ CoreDump.Show: instance GHC.Show.Show CoreSyn.RuleFun
+ CoreDump.Show: instance GHC.Show.Show CoreSyn.Unfolding
+ CoreDump.Show: instance GHC.Show.Show CoreSyn.UnfoldingGuidance
+ CoreDump.Show: instance GHC.Show.Show CoreSyn.UnfoldingSource
+ CoreDump.Show: instance GHC.Show.Show CostCentre.CostCentre
+ CoreDump.Show: instance GHC.Show.Show CostCentre.IsCafCC
+ CoreDump.Show: instance GHC.Show.Show DataCon.DataCon
+ CoreDump.Show: instance GHC.Show.Show Demand.DmdType
+ CoreDump.Show: instance GHC.Show.Show Demand.StrictSig
+ CoreDump.Show: instance GHC.Show.Show ForeignCall.CCallConv
+ CoreDump.Show: instance GHC.Show.Show ForeignCall.CCallSpec
+ CoreDump.Show: instance GHC.Show.Show ForeignCall.CCallTarget
+ CoreDump.Show: instance GHC.Show.Show ForeignCall.ForeignCall
+ CoreDump.Show: instance GHC.Show.Show IdInfo.CafInfo
+ CoreDump.Show: instance GHC.Show.Show IdInfo.IdDetails
+ CoreDump.Show: instance GHC.Show.Show IdInfo.IdInfo
+ CoreDump.Show: instance GHC.Show.Show IdInfo.SpecInfo
+ CoreDump.Show: instance GHC.Show.Show IdInfo.TickBoxOp
+ CoreDump.Show: instance GHC.Show.Show Literal.Literal
+ CoreDump.Show: instance GHC.Show.Show Module.Module
+ CoreDump.Show: instance GHC.Show.Show Module.ModuleName
+ CoreDump.Show: instance GHC.Show.Show Module.PackageKey
+ CoreDump.Show: instance GHC.Show.Show Name.Name
+ CoreDump.Show: instance GHC.Show.Show OccName.OccName
+ CoreDump.Show: instance GHC.Show.Show PrimOp.PrimOp
+ CoreDump.Show: instance GHC.Show.Show PrimOp.PrimOpVecCat
+ CoreDump.Show: instance GHC.Show.Show TyCon.TyCon
+ CoreDump.Show: instance GHC.Show.Show TypeRep.TyLit
+ CoreDump.Show: instance GHC.Show.Show TypeRep.Type
+ CoreDump.Show: instance GHC.Show.Show Var.Var
+ CoreDump.Show: instance GHC.Show.Show a => GHC.Show.Show (CoreSyn.Bind a)
+ CoreDump.Show: instance GHC.Show.Show a => GHC.Show.Show (CoreSyn.Expr a)
+ CoreDump.Show: instance GHC.Show.Show a => GHC.Show.Show (CoreSyn.Tickish a)
+ CoreDump.Show: showOutputable :: Outputable a => a -> String

Files

CoreDump.cabal view
@@ -1,5 +1,5 @@ name:                CoreDump-version:             0.1.1.0+version:             0.1.2.0  synopsis:   A GHC plugin for printing GHC's internal Core data structures.@@ -16,11 +16,10 @@  source-repository head   type:                git-  location:            git://github.com/osa1/CoreDump.git+  location:            https://github.com/osa1/CoreDump  library-  exposed-modules:     CoreDump-  other-modules:       CoreDump.Show+  exposed-modules:     CoreDump CoreDump.Show   build-depends:     base >= 4.8 && < 4.9,     ghc  >= 7.10 && < 8,