All Versions
15
Latest Version
Avg Release Cycle
90 days
Latest Release
1480 days ago

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, 2017

    This contains breaking changes.

    • ๐Ÿ—„ The deprecation notice on readEventLogFromFile has been retracted
    • ๐Ÿ”จ The incremental API has been refactored

    The details are as follows:

    • โšก๏ธ Update bug tracker URL (#10)
    • ๐Ÿ†• New test for Eden events (#11)
    • ๐Ÿ˜Œ Relax version bound for binary (#15)
    • ๐Ÿ‘ท Enable Travis CI (#19)
    • ๐Ÿ”จ Refactor the incremental API which was introduced in 0.5.0.0 (#22)
    • Some speed/memory usage improvements (#18, #22)
  • 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 EventBlocks 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.