Skip to content

Latest commit

 

History

History
105 lines (64 loc) · 4.42 KB

CHANGELOG.markdown

File metadata and controls

105 lines (64 loc) · 4.42 KB

ChangeLog

unreleased

v1.6.0 (2022-01-18)

  • Fix return for shortcut enum.in_threads{ break … } vs enum.in_threads.each{ break … } @toy
  • Switch each_with_object to run in threads, unlike inject/reduce there is no contradiction, care should be taken if passed object is not thread safe @toy
  • Switch to_h (ruby >= 2.6) and to_set to run in threads, they accept block to apply before creating Hash and Set respectively @toy
  • Register compact added in 3.1 to run without threads (as it doesn't accept block) @toy

v1.5.4 (2019-12-26)

  • Register filter_map to run in threads and tally to run without threads (as it doesn't accept block) @toy

v1.5.3 (2019-07-14)

v1.5.2 (2019-05-25)

  • Enable frozen string literals @toy

v1.5.1 (2018-12-30)

  • Register chain to run without threads @toy

v1.5.0 (2017-11-17)

  • Use thread pool instead of creating a thread for every iteration @toy
  • Handle break (also with argument) and exceptions raised in each method of enumerable @toy
  • Register lazy to run without threads @toy

v1.4.0 (2017-03-19)

  • Register sum and uniq to run in threads and chunk_while to run without threads @toy
  • Register grep_v to call block in threads @toy
  • Fix Segmentation fault in ruby 2.0 @toy
  • Fix not sending all block arguments to methods not returning original enumerable @toy
  • Fix for a bug in ruby 2.4.0 causing Segmentation fault @toy
  • Clean up documentation #1 @hollingberry

v1.3.1 (2015-01-09)

  • Register to_h, slice_after and slice_when to run without threads @toy
  • Remove special handling of methods running without threads @toy

v1.3.0 (2014-10-31)

  • Fix not thread safe code for jruby @toy

v1.2.2 (2014-08-08)

  • Fix silencing exceptions raised in blocks @toy

v1.2.1 (2014-04-06)

  • Use explicit requires instead of autoload @toy

v1.2.0 (2013-08-20)

  • Befriend with progress gem @toy
  • Use Delegator instead of undefining methods @toy

v1.1.2 (2013-08-02)

  • Fix for jruby stalling @toy
  • Fix for rubinius not raising NoMethodError for undefined methods @toy
  • Register to_set to run without threads @toy

v1.1.1 (2011-12-13)

  • Decrease priority of initiating block execution for methods not returning original enumerable @toy
  • Call each of enumerable only once for methods not returning original enumerable @toy
  • Remove class method enumerable_methods @toy

v1.1.0 (2011-12-08)

  • Register chunk and slice_before to run without threads @toy
  • Register flat_map and collect_concat to run in threads @toy
  • Register each_entry to run in threads @toy
  • Register each_with_object to run without threads @toy
  • Add argument checking @toy
  • Use faster method for each @toy

v1.0.0 (2011-12-05)

  • Fix for blocks with multiple arguments (each_with_index, enum_with_index) @toy
  • Rewrite: properly working with all compatible Enumerable methods, otherwise running without threads @toy

v0.0.4 (2010-12-15)

  • Internal gem changes @toy

v0.0.3 (2010-07-13)

  • Fix thread count overflow @toy

v0.0.2 (2009-12-29)

  • Internal gem changes @toy

v0.0.1 (2009-09-21)