ghc-debug-client 0.2.0.0 → 0.2.1.0
raw patch · 3 files changed
+11/−5 lines, 3 filesdep ~ghc-debug-commondep ~ghc-debug-conventionPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: ghc-debug-common, ghc-debug-convention
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- ghc-debug-client.cabal +4/−4
- src/GHC/Debug/Retainers.hs +3/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for ghc-debug-client +## 0.2.1.0 -- 2022-05-06++* Fix findRetainersOfConstructorExact+ ## 0.2.0.0 -- 2021-12-06 * Second version.
ghc-debug-client.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: ghc-debug-client-version: 0.2.0.0+version: 0.2.1.0 synopsis: Useful functions for writing heap analysis tools which use ghc-debug. description: Useful functions for writing heap analysis tools which use@@ -41,14 +41,14 @@ network >= 2.6 , containers ^>= 0.6, unordered-containers ^>= 0.2.13,- ghc-debug-common ^>= 0.2,- ghc-debug-convention ^>= 0.2,+ ghc-debug-common == 0.2.1.0,+ ghc-debug-convention == 0.2.0.0, text ^>= 1.2.4, process ^>= 1.6, filepath ^>= 1.4, directory ^>= 1.3, bitwise ^>= 1.0,- hashable ^>= 1.3,+ hashable >= 1.3 && < 1.5, mtl ^>= 2.2, eventlog2html >= 0.8.3, binary ^>= 0.8,
src/GHC/Debug/Retainers.hs view
@@ -41,7 +41,9 @@ loc <- getSourceInfo (tableId (info (noSize sc))) case loc of Nothing -> return False- Just loc -> return $ infoLabel loc == clos_name+ Just loc ->++ return $ (infoName loc) == clos_name -- | From the given roots, find any path to one of the given pointers. -- Note: This function can be quite slow! The first argument is a limit to