hpc 0.5.0.5 → 0.5.0.6
raw patch · 2 files changed
+6/−6 lines, 2 filesdep ~containersdep ~directoryPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: containers, directory
API changes (from Hackage documentation)
- Trace.Hpc.Util: instance (HpcHash a) => HpcHash [a]
+ Trace.Hpc.Util: instance HpcHash a => HpcHash [a]
- Trace.Hpc.Mix: createMixEntryDom :: (Show a) => [(HpcPos, a)] -> [MixEntryDom [a]]
+ Trace.Hpc.Mix: createMixEntryDom :: Show a => [(HpcPos, a)] -> [MixEntryDom [a]]
- Trace.Hpc.Util: toHash :: (HpcHash a) => a -> Hash
+ Trace.Hpc.Util: toHash :: HpcHash a => a -> Hash
Files
- Trace/Hpc/Reflect.hsc +3/−3
- hpc.cabal +3/−3
Trace/Hpc/Reflect.hsc view
@@ -1,8 +1,8 @@-{-# OPTIONS -fglasgow-exts -cpp #-}-module Trace.Hpc.Reflect +{-# LANGUAGE CPP, ForeignFunctionInterface #-}+module Trace.Hpc.Reflect ( clearTix , examineTix- , updateTix + , updateTix ) where import Trace.Hpc.Tix
hpc.cabal view
@@ -1,5 +1,5 @@ name: hpc-version: 0.5.0.5+version: 0.5.0.6 license: BSD3 license-file: LICENSE author: Andy Gill@@ -26,9 +26,9 @@ extensions: CPP if flag(small_base) Build-Depends: base >= 3 && < 5,- directory >= 1 && < 1.1,+ directory >= 1 && < 1.2, old-time >= 1 && < 1.1,- containers >= 0.1 && < 0.4+ containers >= 0.1 && < 0.5 else Build-Depends: base < 3 ghc-options: -Wall