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

Prepare for 0.2.1.0 release

parent c931fe52
No related branches found
No related tags found
No related merge requests found
# Revision history for ghc-debug-client
## 0.2.1.0 -- 2022-05-06
* Fix findRetainersOfConstructorExact
## 0.2.0.0 -- 2021-12-06
* Second version.
......
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,8 +41,8 @@ library
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,
......
# Revision history for ghc-debug-common
## 0.2.1.0 -- 2022-05-06
* Internal refactoring to give better error message on decoding failure
## 0.2.0.0 -- 2021-12-06
* Second version
......
cabal-version: 3.0
name: ghc-debug-common
version: 0.2.0.0
version: 0.2.1.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
......@@ -24,7 +24,7 @@ library
GHC.Debug.Types.Graph,
GHC.Debug.Utils,
GHC.Debug.Types.Ptr
build-depends: base >=4.12 && <4.14,
build-depends: base >=4.16 && < 5,
bytestring ^>=0.11,
binary ^>=0.8,
array ^>= 0.5,
......@@ -37,7 +37,7 @@ library
transformers ^>= 0.5,
dom-lt ^>= 0.2,
unordered-containers ^>= 0.2,
ghc-debug-convention ^>= 0.2,
ghc-debug-convention == 0.2.0.0,
deepseq ^>= 1.4
hs-source-dirs: src
......
# Revision history for ghc-debug-brick
## 0.2.1.0 -- 2022-05-06
* Add function to find closures by exact name (F8)
## 0.2.0.0 -- 2021-12-06
* Second release
......
cabal-version: 2.4
name: ghc-debug-brick
version: 0.2.0.0
version: 0.2.1.0
synopsis: A simple TUI using ghc-debug
description: A simple TUI using ghc-debug
-- bug-reports:
......@@ -36,8 +36,8 @@ executable ghc-heap-view
, time
, deepseq
, microlens
, ghc-debug-client == 0.2.0.0
, ghc-debug-common == 0.2.0.0
, ghc-debug-client == 0.2.1.0
, ghc-debug-common == 0.2.1.0
, ghc-debug-convention == 0.2.0.0
, unordered-containers
, exceptions
......
# Revision history for ghc-debug-stub
## 0.2.1.0 -- 2022-05-06
* Fix bug with write_block on BF_COMPACT closures
## 0.2.0.0 -- 2021-12-06
* Second version
......
cabal-version: 2.4
name: ghc-debug-stub
version: 0.2.0.0
version: 0.2.1.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.2
, ghc-debug-convention == 0.2.0.0
default-language: Haskell2010
cxx-sources: cbits/stub.cpp, cbits/socket.cpp, cbits/trace.cpp
cxx-options: -std=gnu++11 -O3 -g3 -DTHREADED_RTS
......
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