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

Prepare 0.2.0.0

parent 20212243
No related branches found
No related tags found
No related merge requests found
# Revision history for ghc-debug-client # Revision history for ghc-debug-client
## 0.1.0.0 -- YYYY-mm-dd ## 0.2.0.0 -- 2021-12-06
* First version. Released on an unsuspecting world. * Second version.
## 0.1.0.0 -- 2021-06-14
* First version.
cabal-version: 3.0 cabal-version: 3.0
name: ghc-debug-client name: ghc-debug-client
version: 0.1.0.0 version: 0.2.0.0
synopsis: Useful functions for writing heap analysis tools which use synopsis: Useful functions for writing heap analysis tools which use
ghc-debug. ghc-debug.
description: Useful functions for writing heap analysis tools which use description: Useful functions for writing heap analysis tools which use
...@@ -41,8 +41,8 @@ library ...@@ -41,8 +41,8 @@ library
network >= 2.6 , network >= 2.6 ,
containers ^>= 0.6, containers ^>= 0.6,
unordered-containers ^>= 0.2.13, unordered-containers ^>= 0.2.13,
ghc-debug-common ^>= 0.1, ghc-debug-common ^>= 0.2,
ghc-debug-convention ^>= 0.1, ghc-debug-convention ^>= 0.2,
text ^>= 1.2.4, text ^>= 1.2.4,
process ^>= 1.6, process ^>= 1.6,
filepath ^>= 1.4, filepath ^>= 1.4,
......
# Revision history for ghc-debug-common # Revision history for ghc-debug-common
## 0.1.0.0 -- YYYY-mm-dd ## 0.2.0.0 -- 2021-12-06
* First version. Released on an unsuspecting world. * Second version
## 0.1.0.0 -- 2021-06-14
* First version.
cabal-version: 3.0 cabal-version: 3.0
name: ghc-debug-common name: ghc-debug-common
version: 0.1.0.0 version: 0.2.0.0
synopsis: Connect to a socket created by ghc-debug-stub and analyse synopsis: Connect to a socket created by ghc-debug-stub and analyse
the heap of the debuggee program. the heap of the debuggee program.
description: Connect to a socket created by ghc-debug-stub and analyse description: Connect to a socket created by ghc-debug-stub and analyse
...@@ -36,7 +36,7 @@ library ...@@ -36,7 +36,7 @@ library
transformers ^>= 0.5, transformers ^>= 0.5,
dom-lt ^>= 0.2, dom-lt ^>= 0.2,
unordered-containers ^>= 0.2, unordered-containers ^>= 0.2,
ghc-debug-convention ^>= 0.1, ghc-debug-convention ^>= 0.2,
deepseq ^>= 1.4 deepseq ^>= 1.4
hs-source-dirs: src hs-source-dirs: src
......
# Revision history for convention # Revision history for convention
## 0.1.0.0 -- YYYY-mm-dd ## 0.2.0.0 -- 2021-12-06
* First version. Released on an unsuspecting world. * Add a snapshots convention folder.
## 0.1.0.0 -- 2021-06-14
* First version.
cabal-version: 2.4 cabal-version: 2.4
name: ghc-debug-convention name: ghc-debug-convention
version: 0.1.0.0 version: 0.2.0.0
synopsis: Definitions needed by ghc-debug-stub and ghc-debug-common synopsis: Definitions needed by ghc-debug-stub and ghc-debug-common
description: Definitions needed by ghc-debug-stub and ghc-debug-common description: Definitions needed by ghc-debug-stub and ghc-debug-common
-- bug-reports: -- bug-reports:
......
# Revision history for ghc-debug-brick # Revision history for ghc-debug-brick
## 0.2.0.0 -- 2021-12-06
* Second release
## 0.1.0.0 -- 2021-06-14
* First release
cabal-version: 2.4 cabal-version: 2.4
name: ghc-debug-brick name: ghc-debug-brick
version: 0.1.0.0 version: 0.2.0.0
synopsis: A simple TUI using ghc-debug synopsis: A simple TUI using ghc-debug
description: A simple TUI using ghc-debug description: A simple TUI using ghc-debug
-- bug-reports: -- bug-reports:
...@@ -28,14 +28,14 @@ executable ghc-heap-view ...@@ -28,14 +28,14 @@ executable ghc-heap-view
, containers , containers
, directory , directory
, filepath , filepath
, ghc-debug-client
, microlens-platform , microlens-platform
, text , text
, vty , vty
, time , time
, microlens , microlens
, ghc-debug-common , ghc-debug-client == 0.2.0.0
, ghc-debug-convention , ghc-debug-common == 0.2.0.0
, ghc-debug-convention == 0.2.0.0
, unordered-containers , unordered-containers
, exceptions , exceptions
hs-source-dirs: src hs-source-dirs: src
......
# Revision history for ghc-debug-stub # Revision history for ghc-debug-stub
## 0.1.0.0 -- YYYY-mm-dd ## 0.2.0.0 -- 2021-12-06
* First version. Released on an unsuspecting world. * Second version
## 0.1.0.0 -- 2021-06-14
* First version
cabal-version: 2.4 cabal-version: 2.4
name: ghc-debug-stub name: ghc-debug-stub
version: 0.1.0.0 version: 0.2.0.0
synopsis: Functions for instrumenting your application so the heap synopsis: Functions for instrumenting your application so the heap
can be analysed with ghc-debug-common. can be analysed with ghc-debug-common.
description: Functions for instrumenting your application so the heap can description: Functions for instrumenting your application so the heap can
...@@ -27,7 +27,7 @@ library ...@@ -27,7 +27,7 @@ library
, directory ^>= 1.3 , directory ^>= 1.3
, filepath ^>= 1.4 , filepath ^>= 1.4
, ghc-prim ^>= 0.8 , ghc-prim ^>= 0.8
, ghc-debug-convention ^>= 0.1 , ghc-debug-convention ^>= 0.2
default-language: Haskell2010 default-language: Haskell2010
cxx-sources: cbits/stub.cpp, cbits/socket.cpp, cbits/trace.cpp cxx-sources: cbits/stub.cpp, cbits/socket.cpp, cbits/trace.cpp
cxx-options: -std=gnu++11 -O3 -g3 -DTHREADED_RTS cxx-options: -std=gnu++11 -O3 -g3 -DTHREADED_RTS
......
name: ghc-debugger name: ghc-debugger
version: 0.1.0.0 version: 0.2.0.0
-- synopsis: -- synopsis:
-- description: -- description:
homepage: https://github.com/bgamari/ghc-debug homepage: https://github.com/bgamari/ghc-debug
......
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