ghc-debug-brick 0.4.0.0 → 0.4.0.1
raw patch · 3 files changed
+8/−3 lines, 3 filesdep ~ghc-debug-client
Dependency ranges changed: ghc-debug-client
Files
- CHANGELOG.md +5/−0
- ghc-debug-brick.cabal +2/−2
- src/Main.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,10 @@ # Revision history for ghc-debug-brick +## 0.4.0.1 -- 2023-03-09++* Fix snapshot mode+* Show why threads are blocked (or not)+ ## 0.4.0.0 -- 2022-12-14 * Add command picker (Ctrl-P) for selecting commands
ghc-debug-brick.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: ghc-debug-brick-version: 0.4.0.0+version: 0.4.0.1 synopsis: A simple TUI using ghc-debug description: A simple TUI using ghc-debug bug-reports: https://gitlab.haskell.org/ghc/ghc-debug/-/issues@@ -29,7 +29,7 @@ , time , deepseq , microlens- , ghc-debug-client == 0.4.0.0+ , ghc-debug-client == 0.4.0.1 , ghc-debug-common == 0.4.0.0 , ghc-debug-convention == 0.4.0.0 , unordered-containers
src/Main.hs view
@@ -255,7 +255,7 @@ Snapshot | Just (_debuggeeIx, socket) <- listSelectedElement knownSnapshots' -> do- debuggee' <- liftIO $ snapshotConnect (writeBChan eventChan . ProgressMessage . error . show) (view socketLocation socket)+ debuggee' <- liftIO $ snapshotConnect (writeBChan eventChan . ProgressMessage) (view socketLocation socket) put $ appState & majorState .~ Connected { _debuggeeSocket = socket , _debuggee = debuggee'