packages feed

ghc-check 0.5.0.0 → 0.5.0.1

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ GHC.Check: instance GHC.Show.Show GHC.Check.CompatibilityGuess
+ GHC.Check: instance GHC.Show.Show GHC.Check.NotCompatibleReason

Files

ghc-check.cabal view
@@ -1,7 +1,7 @@ cabal-version:       1.20 build-type:          Simple name:                ghc-check-version:             0.5.0.0+version:             0.5.0.1 synopsis:            detect mismatches between compile-time and run-time versions of the ghc api description:         detect mismatches between compile-time and run-time versions of the ghc api bug-reports:         https://github.com/pepeiborra/ghc-check/issues
src/GHC/Check.hs view
@@ -184,7 +184,7 @@ data CompatibilityGuess   = ProbablyCompatible {warning :: Maybe String}   | NotCompatible {reason :: !NotCompatibleReason}-  deriving Eq+  deriving (Eq, Show)  data NotCompatibleReason   = PackageVersionMismatch@@ -197,7 +197,7 @@         runTimeAbi :: !String,         compileTime :: !Version       }-  deriving Eq+  deriving (Eq, Show)  -- | Interpret a 'PackageCheckResult' into a yes/no GHC compatibility answer guessCompatibility :: PackageCheckResult -> CompatibilityGuess