From 6a6757b4407ffc4ab4bed2f344b2f66e73c46200 Mon Sep 17 00:00:00 2001 From: Matthew Pickering <matthewtpickering@gmail.com> Date: Mon, 6 Dec 2021 16:57:01 +0000 Subject: [PATCH] Prepare 0.2.0.0 --- client/CHANGELOG.md | 8 ++++++-- client/ghc-debug-client.cabal | 6 +++--- common/CHANGELOG.md | 8 ++++++-- common/ghc-debug-common.cabal | 4 ++-- convention/CHANGELOG.md | 8 ++++++-- convention/ghc-debug-convention.cabal | 2 +- ghc-debug-brick/CHANGELOG.md | 10 ++++++++++ ghc-debug-brick/ghc-debug-brick.cabal | 8 ++++---- stub/CHANGELOG.md | 8 ++++++-- stub/ghc-debug-stub.cabal | 4 ++-- test/ghc-debugger.cabal | 2 +- 11 files changed, 47 insertions(+), 21 deletions(-) diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 61f34175..6c945c47 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,5 +1,9 @@ # 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. diff --git a/client/ghc-debug-client.cabal b/client/ghc-debug-client.cabal index ee20f2f8..07aa7445 100644 --- a/client/ghc-debug-client.cabal +++ b/client/ghc-debug-client.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ghc-debug-client -version: 0.1.0.0 +version: 0.2.0.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.1, - ghc-debug-convention ^>= 0.1, + ghc-debug-common ^>= 0.2, + ghc-debug-convention ^>= 0.2, text ^>= 1.2.4, process ^>= 1.6, filepath ^>= 1.4, diff --git a/common/CHANGELOG.md b/common/CHANGELOG.md index 8d35bf4f..a1a6c5cf 100644 --- a/common/CHANGELOG.md +++ b/common/CHANGELOG.md @@ -1,5 +1,9 @@ # 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. diff --git a/common/ghc-debug-common.cabal b/common/ghc-debug-common.cabal index ae611a0d..48b0161a 100644 --- a/common/ghc-debug-common.cabal +++ b/common/ghc-debug-common.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 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 the heap of the debuggee program. description: Connect to a socket created by ghc-debug-stub and analyse @@ -36,7 +36,7 @@ library transformers ^>= 0.5, dom-lt ^>= 0.2, unordered-containers ^>= 0.2, - ghc-debug-convention ^>= 0.1, + ghc-debug-convention ^>= 0.2, deepseq ^>= 1.4 hs-source-dirs: src diff --git a/convention/CHANGELOG.md b/convention/CHANGELOG.md index f9434d2f..8ec4827b 100644 --- a/convention/CHANGELOG.md +++ b/convention/CHANGELOG.md @@ -1,5 +1,9 @@ # 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. diff --git a/convention/ghc-debug-convention.cabal b/convention/ghc-debug-convention.cabal index 23190358..1083e129 100644 --- a/convention/ghc-debug-convention.cabal +++ b/convention/ghc-debug-convention.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 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 description: Definitions needed by ghc-debug-stub and ghc-debug-common -- bug-reports: diff --git a/ghc-debug-brick/CHANGELOG.md b/ghc-debug-brick/CHANGELOG.md index f0dc44a4..2423e0bf 100644 --- a/ghc-debug-brick/CHANGELOG.md +++ b/ghc-debug-brick/CHANGELOG.md @@ -1 +1,11 @@ # Revision history for ghc-debug-brick + +## 0.2.0.0 -- 2021-12-06 + +* Second release + +## 0.1.0.0 -- 2021-06-14 + +* First release + + diff --git a/ghc-debug-brick/ghc-debug-brick.cabal b/ghc-debug-brick/ghc-debug-brick.cabal index 850381d1..2c6cb183 100644 --- a/ghc-debug-brick/ghc-debug-brick.cabal +++ b/ghc-debug-brick/ghc-debug-brick.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: ghc-debug-brick -version: 0.1.0.0 +version: 0.2.0.0 synopsis: A simple TUI using ghc-debug description: A simple TUI using ghc-debug -- bug-reports: @@ -28,14 +28,14 @@ executable ghc-heap-view , containers , directory , filepath - , ghc-debug-client , microlens-platform , text , vty , time , microlens - , ghc-debug-common - , ghc-debug-convention + , ghc-debug-client == 0.2.0.0 + , ghc-debug-common == 0.2.0.0 + , ghc-debug-convention == 0.2.0.0 , unordered-containers , exceptions hs-source-dirs: src diff --git a/stub/CHANGELOG.md b/stub/CHANGELOG.md index 02ca6c44..b956aeb5 100644 --- a/stub/CHANGELOG.md +++ b/stub/CHANGELOG.md @@ -1,5 +1,9 @@ # 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 diff --git a/stub/ghc-debug-stub.cabal b/stub/ghc-debug-stub.cabal index 87a434ca..54dbfdd9 100644 --- a/stub/ghc-debug-stub.cabal +++ b/stub/ghc-debug-stub.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: ghc-debug-stub -version: 0.1.0.0 +version: 0.2.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.1 + , ghc-debug-convention ^>= 0.2 default-language: Haskell2010 cxx-sources: cbits/stub.cpp, cbits/socket.cpp, cbits/trace.cpp cxx-options: -std=gnu++11 -O3 -g3 -DTHREADED_RTS diff --git a/test/ghc-debugger.cabal b/test/ghc-debugger.cabal index a3c38119..c8d26fca 100644 --- a/test/ghc-debugger.cabal +++ b/test/ghc-debugger.cabal @@ -1,5 +1,5 @@ name: ghc-debugger -version: 0.1.0.0 +version: 0.2.0.0 -- synopsis: -- description: homepage: https://github.com/bgamari/ghc-debug -- GitLab