packages feed

haskell-debugger 0.6.0.0 → 0.7.0.0

raw patch · 3 files changed

+6/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for haskell-debugger +## 0.7.0.0 -- 2025-09-10++* Fix line buffering of debuggee output (thus, stepping through a print line, will indeed print it to the console now).+ ## 0.6.0.0 -- 2025-09-10  * Improve unit handling and fix running when `main` functions exist across different units
haskell-debugger.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.12 name:               haskell-debugger-version:            0.6.0.0+version:            0.7.0.0 synopsis:     A step-through machine-interface debugger for GHC Haskell 
hdb/Development/Debug/Adapter/Init.hs view
@@ -128,7 +128,7 @@       -- read from until we read an EOF.       (readDebuggerOutput, writeDebuggerOutput) <- liftIO P.createPipe       liftIO $ do-        hSetBuffering readDebuggerOutput NoBuffering+        hSetBuffering readDebuggerOutput LineBuffering         hSetBuffering writeDebuggerOutput NoBuffering         -- GHC output uses utf8         hSetEncoding readDebuggerOutput utf8