Skip to content

Commit

Permalink
Add NEWS entry for kwargs as NamedTuples
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan committed Jan 23, 2018
1 parent 6fc3517 commit 8e55898
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,11 @@ Breaking changes

This section lists changes that do not have deprecation warnings.

* Keyword arguments are now `NamedTuple`s rather than `Iterators.IndexValue`s. This
is breaking because iteration over `NamedTuple`s produces values only, whereas iteration
over `Iterators.IndexValue` produces name, value pairs. The `pairs` function can be
used to extract both names and values. ([#24795])

* `readuntil` now does *not* include the delimiter in its result, matching the
behavior of `readline`. Pass `keep=true` to get the old behavior ([#25633]).

Expand Down Expand Up @@ -1221,6 +1226,7 @@ Command-line option changes
[#24785]: https://github.com/JuliaLang/julia/issues/24785
[#24786]: https://github.com/JuliaLang/julia/issues/24786
[#24794]: https://github.com/JuliaLang/julia/issues/24794
[#24795]: https://github.com/JuliaLang/julia/issues/24795
[#24805]: https://github.com/JuliaLang/julia/issues/24805
[#24808]: https://github.com/JuliaLang/julia/issues/24808
[#24831]: https://github.com/JuliaLang/julia/issues/24831
Expand Down

0 comments on commit 8e55898

Please sign in to comment.