diff options
-rw-r--r-- | ChangeLog.md | 7 | ||||
-rw-r--r-- | ghc-gc-hook.cabal | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index db93f8d..d7c8418 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,13 @@ # Revision history for ghc-gc-hook +## 0.2.1.0 -- 2022-06-03 + +* Now allows the host program to use TemplateHaskell, but the GC hook cannot be + used inside a splice. The issue is that the `rtsConfig` symbol is not + available inside a TH splice, so we need to use weak symbols to make it work. + + ## 0.2.0.0 -- 2022-04-25 * First version. Released on an unsuspecting world. diff --git a/ghc-gc-hook.cabal b/ghc-gc-hook.cabal index 416e886..575c803 100644 --- a/ghc-gc-hook.cabal +++ b/ghc-gc-hook.cabal @@ -7,7 +7,7 @@ description: information from Haskell in a bare-bones form; furthermore, it gives a small usability improvement for running your own function from C using the hook from this library. -version: 0.2.0.0 +version: 0.2.1.0 category: GHC license: BSD3 license-file: LICENSE |