Changelog for ghc-events-0.8.0

Change Log

0.8.0 - 2018-07-11

0.7.3 - 2018-07-10

0.7.2 - 2018-03-13

0.7.1 - 2018-02-17

0.7.0 - 2017-10-04

0.6.0 - 2017-05-31

This contains breaking changes.

The details are as follows:

0.5.0.0 - unreleased

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.