ghc-prof 1.4.1.7 → 1.4.1.8
raw patch · 2 files changed
+34/−7 lines, 2 filesdep ~basedep ~tastyPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, tasty
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- ghc-prof.cabal +29/−7
CHANGELOG.md view
@@ -1,5 +1,10 @@ # Revision history for ghc-prof +## v1.4.1.8 - 2021-02-23++* Relax upper version bounds for base and tasty+* Switch from Travis CI to GitHub Actions+ ## v1.4.1.7 - 2020-04-04 * Relax upper version bound for base to support GHC 8.10.1
ghc-prof.cabal view
@@ -1,20 +1,42 @@+cabal-version: 2.4 name: ghc-prof-version: 1.4.1.7+version: 1.4.1.8 synopsis: Library for parsing GHC time and allocation profiling reports description: ghc-prof is a library for parsing GHC time and allocation profiling reports. homepage: https://github.com/maoe/ghc-prof-license: BSD3+license: BSD-3-Clause license-file: LICENSE author: Mitsutoshi Aoe maintainer: Mitsutoshi Aoe <me@maoe.name>-copyright: Copyright (C) 2013-2020 Mitsutoshi Aoe+copyright: Copyright (C) 2013-2021 Mitsutoshi Aoe category: Development build-type: Simple extra-source-files: CHANGELOG.md README.md-cabal-version: >=1.10-tested-with: GHC >= 7.6 && <= 8.10.1+tested-with: GHC == 7.6.3+ || == 7.8.4+ || == 7.10.3+ || == 8.0.2+ || == 8.2.2+ || == 8.4.1+ || == 8.4.2+ || == 8.4.3+ || == 8.4.4+ || == 8.6.1+ || == 8.6.2+ || == 8.6.3+ || == 8.6.4+ || == 8.6.5+ || == 8.8.1+ || == 8.8.2+ || == 8.8.3+ || == 8.8.4+ || == 8.10.1+ || == 8.10.2+ || == 8.10.3+ || == 8.10.4+ || == 9.0.1 flag dump description: Build the executable "dump"@@ -29,7 +51,7 @@ other-modules: Control.Monad.Extras build-depends:- base >= 4.6 && < 4.15+ base >= 4.6 && < 4.16 , attoparsec < 0.14 , containers >= 0.5 && < 0.7 , scientific < 0.4@@ -68,7 +90,7 @@ , filepath , ghc-prof , process- , tasty < 1.3+ , tasty < 1.5 , tasty-hunit >= 0.9.1 && < 0.11 , temporary , text