diff --git a/Trace/Hpc/Mix.hs b/Trace/Hpc/Mix.hs index c5e3ef4384ddcb5cd76e59398bbcf48c023696d7..8907f17eaa94a59535fba90b158a0bcf8db8da9a 100644 --- a/Trace/Hpc/Mix.hs +++ b/Trace/Hpc/Mix.hs @@ -1,4 +1,3 @@ -{-# LANGUAGE Safe #-} --------------------------------------------------------------- -- Colin Runciman and Andy Gill, June 2006 --------------------------------------------------------------- diff --git a/Trace/Hpc/Reflect.hsc b/Trace/Hpc/Reflect.hsc index 9948bde079f1ac51e116fc28d990da2dd3a5c203..2ebc726990c3b8792cd5573a90140a6d0dc56d04 100644 --- a/Trace/Hpc/Reflect.hsc +++ b/Trace/Hpc/Reflect.hsc @@ -1,4 +1,4 @@ -{-# LANGUAGE ForeignFunctionInterface, Trustworthy #-} +{-# LANGUAGE ForeignFunctionInterface #-} module Trace.Hpc.Reflect ( clearTix , examineTix diff --git a/Trace/Hpc/Tix.hs b/Trace/Hpc/Tix.hs index df0ca23d0a62a4e99c69629c359621852750029c..2213d9593734416b25216ee75e02c097a3f59acf 100644 --- a/Trace/Hpc/Tix.hs +++ b/Trace/Hpc/Tix.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE Safe, DeriveGeneric, StandaloneDeriving #-} +{-# LANGUAGE DeriveGeneric, StandaloneDeriving #-} ------------------------------------------------------------ -- Andy Gill and Colin Runciman, June 2006 ------------------------------------------------------------ diff --git a/Trace/Hpc/Util.hs b/Trace/Hpc/Util.hs index a906d1b345100148987e234ab6c4f8bdb68ab63f..4c56a8beccfb5fd868f590c8c220488c34e51a7a 100644 --- a/Trace/Hpc/Util.hs +++ b/Trace/Hpc/Util.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE Trustworthy, DeriveGeneric, StandaloneDeriving #-} +{-# LANGUAGE DeriveGeneric, StandaloneDeriving #-} ----------------------------------------- -- Andy Gill and Colin Runciman, June 2006 ------------------------------------------ diff --git a/changelog.md b/changelog.md index 0aae5a1ba3b3e793f28a0d9915a5b08d2d761de6..1603bec06b6ad4e84e43082f716f708b7dae5772 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,8 @@ # Changelog for [`hpc` package](http://hackage.haskell.org/package/hpc) -## Unreleased +## 0.7.0.0 *July 2023* + * The import of the modules from this package is no longer considered safe, since we use functions from the `System.Directory` module from the `directory` package which is no longer considered safe beginning from version `1.3.8`. * Replace uses of `String` by `FilePath` in functions `readTix`, `writeTix`, `getTixFileName`, `readMix` and `mixCreate`. * Remove support for version of GHC below 8.6 diff --git a/hpc.cabal b/hpc.cabal index 75bab5b30b6b13f3ee041a7271e1686932153872..12336952c3a49246b28b69c717ef373774e5e0e9 100644 --- a/hpc.cabal +++ b/hpc.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: hpc -version: 0.6.2.0 +version: 0.7.0.0 -- NOTE: Don't forget to update ./changelog.md license: BSD-3-Clause license-file: LICENSE