Skip to content
Snippets Groups Projects
Commit d114ba69 authored by Matthew Pickering's avatar Matthew Pickering
Browse files

Prepare 0.4.0.0 release

parent 354b1f39
No related branches found
No related tags found
No related merge requests found
# Revision history for ghc-debug-client
## 0.4 -- 2022-12-14
* Add support for tracing SRTs. This is quite an invasive change which adds a new
pointer type to the DebugClosure type. This change is reflected in the API for
parTrace and traceFrom.
* The `Quadtraverse` abstraction is generalised to `Quintraverse` to account for
this new type parameter.
## 0.3 -- 2022-10-06
* Abstract away tracing functions to allow configuration of progress reporting.
......
cabal-version: 3.0
name: ghc-debug-client
version: 0.3.0.0
version: 0.4.0.0
synopsis: Useful functions for writing heap analysis tools which use
ghc-debug.
description: Useful functions for writing heap analysis tools which use
......@@ -42,8 +42,8 @@ library
network >= 2.6 ,
containers ^>= 0.6,
unordered-containers ^>= 0.2.13,
ghc-debug-common == 0.3.0.0,
ghc-debug-convention == 0.3.0.0,
ghc-debug-common == 0.4.0.0,
ghc-debug-convention == 0.4.0.0,
text ^>= 1.2.4,
process ^>= 1.6,
filepath ^>= 1.4,
......@@ -51,7 +51,7 @@ library
bitwise ^>= 1.0,
hashable >= 1.3 && < 1.5,
mtl ^>= 2.2,
eventlog2html >= 0.8.3,
eventlog2html >= 0.8.3 && < 0.9.3,
binary ^>= 0.8,
psqueues ^>= 0.2,
dom-lt ^>= 0.2,
......
# Revision history for ghc-debug-common
## 0.4.0.0 -- 2022-12-14
* Add RequestSRT to allow support for tracing SRTs
## 0.3.0.0 -- 2022-10-06
* Support changes to TSO decoding on GHC HEAD
......
cabal-version: 3.0
name: ghc-debug-common
version: 0.3.0.0
version: 0.4.0.0
synopsis: Connect to a socket created by ghc-debug-stub and analyse
the heap of the debuggee program.
description: Connect to a socket created by ghc-debug-stub and analyse
......@@ -38,7 +38,7 @@ library
transformers ^>= 0.5,
dom-lt ^>= 0.2,
unordered-containers ^>= 0.2,
ghc-debug-convention == 0.3.0.0,
ghc-debug-convention == 0.4.0.0,
deepseq ^>= 1.4
hs-source-dirs: src
......
# Revision history for convention
## 0.4.0.0 -- 2022-12-14
* No changes.
## 0.3.0.0 -- 2022-10-06
* No changes.
......
cabal-version: 2.4
name: ghc-debug-convention
version: 0.3.0.0
version: 0.4.0.0
synopsis: Definitions needed by ghc-debug-stub and ghc-debug-common
description: Definitions needed by ghc-debug-stub and ghc-debug-common
-- bug-reports:
......
# Revision history for ghc-debug-brick
## 0.4.0.0 -- 2022-12-14
* Add command picker (Ctrl-P) for selecting commands
* Add support for tracing SRTs
* Better progress indicating
* Fix some bugs with `ESC` not respecting the correct scopes.
* Keybinding for multi collapse (Shift-Left)
## 0.3.0.0 -- 2022-10-06
* Major improvments to interface
......
cabal-version: 2.4
name: ghc-debug-brick
version: 0.3.0.0
version: 0.4.0.0
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,9 +29,9 @@ executable ghc-debug-brick
, time
, deepseq
, microlens
, ghc-debug-client == 0.3.0.0
, ghc-debug-common == 0.3.0.0
, ghc-debug-convention == 0.3.0.0
, ghc-debug-client == 0.4.0.0
, ghc-debug-common == 0.4.0.0
, ghc-debug-convention == 0.4.0.0
, unordered-containers
, exceptions
, contra-tracer
......
# Revision history for ghc-debug-stub
## 0.4.0.0 -- 2022-12-14
* Fix compatability with HEAD/9.4/9.2
* Support for SRT requests
## 0.3.0.0 -- 2022-10-06
* Allow clients to reconnect multiple times to debuggee (Finley McIlwaine)
......
cabal-version: 2.4
name: ghc-debug-stub
version: 0.3.0.0
version: 0.4.0.0
synopsis: Functions for instrumenting your application so the heap
can be analysed with ghc-debug-common.
description: Functions for instrumenting your application so the heap can
......@@ -27,7 +27,7 @@ library
, directory ^>= 1.3
, filepath ^>= 1.4
, ghc-prim ^>= 0.8
, ghc-debug-convention == 0.3.0.0
, ghc-debug-convention == 0.4.0.0
default-language: Haskell2010
cxx-sources: cbits/stub.cpp, cbits/socket.cpp, cbits/trace.cpp
cxx-options: -std=gnu++11 -pthread -O3 -g3 -DTHREADED_RTS
......
name: ghc-debugger
version: 0.2.0.0
version: 0.4.0.0
-- synopsis:
-- description:
homepage: https://github.com/bgamari/ghc-debug
......@@ -54,8 +54,8 @@ test-suite system-test
, tasty
, tasty-hspec
, process
, ghc-debug-client == 0.3.0.0
, ghc-debug-common == 0.3.0.0
, ghc-debug-client == 0.4.0.0
, ghc-debug-common == 0.4.0.0
, directory
, async
, extra
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment