Changelog History
Page 2
-
v0.7.2 Changes
March 12, 2018- โ Add Semigroup instance for MaxVars to build with ghc-8.4
-
v0.7.1 Changes
February 17, 2018- Export HeapProfBreakdown, HeapProfFlags, and PID types (#35)
-
v0.7.0 Changes
October 04, 2017- โ Add support for heap profiling events (#29)
-
v0.6.0 Changes
May 31, 2017This contains breaking changes.
- ๐ The deprecation notice on
readEventLogFromFile
has been retracted - ๐จ The incremental API has been refactored
The details are as follows:
- ๐ The deprecation notice on
-
v0.5.0.0 Changes
- Readme added :)
- ๐ Old parser replaced with an incremental implementation
- General overhaul of the codebase
- Partial Haddock coverage
๐ The 0.5.* releases should be able to handle large event logs and logs that have been cut off abruptly, e.g. from executable runs that resulted in crashes.
This release should be mostly backwards compatible, however the "old" way of reading event logs, namely the
readEventLogFromFile
function is now deprecated.NOTE: Users parsing large logs may notice that this version of the library is noticably slower than the older versions. The incremental parser is at fault here - previous versions of the libray used a "trick" that would let them essentially skip the first step of the mergesort algorithm since
EventBlock
s were already sorted in time order. The new parser reads the file incrementally and cannot take the advantage of this. Apologies for any inconvenience this may have caused.