hpc 0.7.0.0 → 0.7.0.1
raw patch · 2 files changed
+7/−3 lines, 2 filesdep ~basedep ~containersdep ~filepathPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, containers, filepath, time
API changes (from Hackage documentation)
Files
- changelog.md +4/−0
- hpc.cabal +3/−3
changelog.md view
@@ -1,5 +1,9 @@ # Changelog for [`hpc` package](http://hackage.haskell.org/package/hpc) +## 0.7.0.1 *January 2024*++ * Bump upper bounds of dependencies on filepath and containers libraries.+ ## 0.7.0.0 *August 2023* * The function `readMix` no longer uses lazyIO to read `.mix` files, which is consistent with the behaviour of the `readTix` function.
hpc.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: hpc-version: 0.7.0.0+version: 0.7.0.1 -- NOTE: Don't forget to update ./changelog.md license: BSD-3-Clause license-file: LICENSE@@ -34,9 +34,9 @@ Build-Depends: base >= 4.12 && < 4.20,- containers >= 0.4.1 && < 0.7,+ containers >= 0.4.1 && < 0.8, deepseq >= 1.1 && < 1.6, directory >= 1.1 && < 1.4,- filepath >= 1 && < 1.5,+ filepath >= 1 && < 1.6, time >= 1.2 && < 1.13 ghc-options: -Wall