packages feed

ghc-check 0.3.0.0 → 0.3.0.1

raw patch · 2 files changed

+3/−1 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- GHC.Check.Util: guessLibdir :: IO FilePath
- GHC.Check.Util: liftVersion :: Version -> TExpQ Version
+ GHC.Check: checkGhcVersion :: Version -> IO VersionCheck

Files

ghc-check.cabal view
@@ -1,7 +1,7 @@ cabal-version:       1.20 build-type:          Simple name:                ghc-check-version:             0.3.0.0+version:             0.3.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@@ -16,6 +16,7 @@   exposed-modules:     GHC.Check,                        GHC.Check.Executable                        GHC.Check.PackageDb+  other-modules:                        GHC.Check.Util   build-depends:       base >=4.10.0.0 && < 5.0,                        filepath,
src/GHC/Check.hs view
@@ -3,6 +3,7 @@ module GHC.Check ( VersionCheck(..) , makeGhcVersionChecker+, checkGhcVersion ) where  import           Control.Exception