ghc-prof 1.4.1.9 → 1.4.1.11
raw patch · 4 files changed
+22/−10 lines, 4 filesdep ~attoparsecdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: attoparsec, base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +9/−0
- README.md +1/−0
- ghc-prof.cabal +11/−9
- src/GHC/Prof/Parser.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,14 @@ # Revision history for ghc-prof +## v1.4.1.11 - 2022-05-18++* Add ghcprofview-hs to the list of applications that use ghc-prof ([#21](https://github.com/maoe/ghc-prof/pull/21))+* Allow building with GHC 9.2.2 ([#22](https://github.com/maoe/ghc-prof/pull/22))++## v1.4.1.10 - 2021-10-27++* Actually allow attoparsec-0.14 by removing the upper version bound in test:regression+ ## v1.4.1.9 - 2021-07-16 * Allow attoparsec-0.14 (#20)
README.md view
@@ -12,3 +12,4 @@ * [profiteur: Treemap visualiser for GHC prof files](https://hackage.haskell.org/package/profiteur) * [viewprof: Text-based interactive GHC .prof viewer](https://hackage.haskell.org/package/viewprof) * [profiterole: Restructure GHC profile reports](https://hackage.haskell.org/package/profiterole)+* [ghcprofview-hs: GTK3-based profile report viewer](https://github.com/portnov/ghcprofview-hs)
ghc-prof.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: ghc-prof-version: 1.4.1.9+version: 1.4.1.11 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@@ -8,18 +8,14 @@ license-file: LICENSE author: Mitsutoshi Aoe maintainer: Mitsutoshi Aoe <me@maoe.name>-copyright: Copyright (C) 2013-2021 Mitsutoshi Aoe+copyright: Copyright (C) 2013-2022 Mitsutoshi Aoe category: Development build-type: Simple extra-source-files: CHANGELOG.md README.md-tested-with: GHC == 7.6.3- || == 7.8.4- || == 7.10.3- || == 8.0.2+tested-with: GHC == 8.0.2 || == 8.2.2- || == 8.4.1 || == 8.4.2 || == 8.4.3 || == 8.4.4@@ -36,7 +32,13 @@ || == 8.10.2 || == 8.10.3 || == 8.10.4+ || == 8.10.5+ || == 8.10.6+ || == 8.10.7 || == 9.0.1+ || == 9.0.2+ || == 9.2.1+ || == 9.2.2 flag dump description: Build the executable "dump"@@ -51,7 +53,7 @@ other-modules: Control.Monad.Extras build-depends:- base >= 4.6 && < 4.16+ base >= 4.6 && < 4.17 , attoparsec < 0.15 , containers >= 0.5 && < 0.7 , scientific < 0.4@@ -83,7 +85,7 @@ hs-source-dirs: tests main-is: Regression.hs build-depends:- attoparsec >= 0.10 && < 0.14+ attoparsec >= 0.10 , base , containers , directory
src/GHC/Prof/Parser.hs view
@@ -17,7 +17,7 @@ , costCentres , costCentre ) where-import Control.Applicative+import Control.Applicative (Alternative((<|>)), optional) import Control.Monad import Data.Char (isDigit, isSpace) import Data.Foldable (asum, foldl')