CHANGES.md~ 1.0 KB

123456789101112131415161718192021222324252627
  1. Hi, figured we could actually use a changelog now:
  2. ## 1.1.3 2017-04-21
  3. * Improve documentation and limit files included in the distribution.
  4. ## 1.1.2 2016-03-15
  5. * Add tracker group cycle detection and tests for it
  6. ## 1.1.1 2016-01-29
  7. * Fix a typo in stream completion tracker
  8. ## 1.1.0 2016-01-29
  9. * Rewrote completion percent computation to be low impact– no more walking a
  10. tree of completion groups every time we need this info. Previously, with
  11. medium sized tree of completion groups, even a relatively modest number of
  12. calls to the top level `completed()` method would result in absurd numbers
  13. of calls overall as it walked down the tree. We now, instead, keep track as
  14. we bubble up changes, so the computation is limited to when data changes and
  15. to the depth of that one branch, instead of _every_ node. (Plus, we were already
  16. incurring _this_ cost, since we already bubbled out changes.)
  17. * Moved different tracker types out to their own files.
  18. * Made tests test for TOO MANY events too.
  19. * Standarized the source code formatting