diff options
-rw-r--r-- | docs/users_guide/8.8.1-notes.rst | 7 | ||||
-rw-r--r-- | libraries/ghc-prim/changelog.md | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/docs/users_guide/8.8.1-notes.rst b/docs/users_guide/8.8.1-notes.rst index 7ea2c87cbe..7e546452be 100644 --- a/docs/users_guide/8.8.1-notes.rst +++ b/docs/users_guide/8.8.1-notes.rst @@ -40,6 +40,13 @@ Template Haskell ~~~~~~~~~~~~~~~~ +``ghc-prim`` library +~~~~~~~~~~~~~~~~~~~~ + +- GHC now exposes a new primop, ``traceBinaryEvent#``. This primop writes + eventlog events similar to ``traceBinaryEvent#`` but allows the user to pass + the event payload as a binary blob instead of a ``String``. + ``ghc`` library ~~~~~~~~~~~~~~~ diff --git a/libraries/ghc-prim/changelog.md b/libraries/ghc-prim/changelog.md index 53e77a0892..76da3e0b1d 100644 --- a/libraries/ghc-prim/changelog.md +++ b/libraries/ghc-prim/changelog.md @@ -1,3 +1,10 @@ +## 0.6.0 + +- Shipped with GHC 8.8.1 + +- Added to `GHC.Prim`: + traveBinaryEvent# :: Addr# -> Int# -> State# s -> State# s + ## 0.5.3 (edit as necessary) - Shipped with GHC 8.6.1 |