From c93259e624a931c949d883023022bc91445fdf45 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Mon, 20 Dec 2021 10:14:09 -0500 Subject: [PATCH] NEWS --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index f0310f4cf37e3..8b71822a34fda 100644 --- a/NEWS.md +++ b/NEWS.md @@ -80,6 +80,7 @@ Standard library changes * `range` accepts either `stop` or `length` as a sole keyword argument ([#39241]) * `precision` and `setprecision` now accept a `base` keyword ([#42428]). +* `Iterators.reverse` (and hence `last`) now supports `eachline` iterators ([#42225]). * The `length` function on certain ranges of certain specific element types no longer checks for integer overflow in most cases. The new function `checked_length` is now available, which will try to use checked arithmetic to error if the result may be wrapping. Or use a package such as SaferIntegers.jl when