summaryrefslogtreecommitdiff
path: root/History.md
diff options
context:
space:
mode:
Diffstat (limited to 'History.md')
-rw-r--r--History.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/History.md b/History.md
index d910fec..f85ad87 100644
--- a/History.md
+++ b/History.md
@@ -11,10 +11,18 @@
true` to files so that modern Rubies can automatically reduce duplicate
string allocations. [#135][]
-* 1 bug fix
+* 2 bug fixes
* Burke Libbey fixed a problem with cached data loading. [#126][]
+ * Resolved an issue where Enumerable#inject returns +nil+ when provided
+ an empty enumerable and a default value has not been provided. This is
+ because when Enumerable#inject isn't provided a starting value, the
+ first value is used as the default value. In every case where this
+ error was happening, the result was supposed to be an array containing
+ Set objects so they can be reduced to a single Set. [#117][], [#127][],
+ [#134][].
+
* Deprecations:
* Lazy loading (`$RUBY_MIME_TYPES_LAZY_LOAD`) has been deprecated.