From 43e20a59738ddd99c80aecc649e543075bc2894f Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Tue, 30 Jul 2019 14:09:03 -0400 Subject: [PATCH] synchronize news and history with 1.2 branch --- HISTORY.md | 8 ++++++++ NEWS.md | 7 ------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 0b5b6768dee65..a0cda2f03adbd 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -80,6 +80,12 @@ Standard library changes * Sparse vector outer products are more performant and maintain sparsity in products of the form `kron(u, v')`, `u * v'`, and `u .* v'` where `u` and `v` are sparse vectors or column views ([#24980]). +* The `sprand` function is now 2 to 5 times faster ([#30494]). As a consequence of this change, the random stream of matrices produced with `sprand` and `sprandn` has changed. + +#### Sockets + +* `getipaddrs` returns IP addresses in the order provided by libuv ([#32260]). +* `getipaddr` prefers to return the first `IPv4` interface address provided by libuv ([#32260]). #### Dates * Fixed `repr` such that it displays `DateTime` as it would be entered in Julia ([#30200]). @@ -115,6 +121,7 @@ External dependencies [#30323]: https://github.com/JuliaLang/julia/issues/30323 [#30372]: https://github.com/JuliaLang/julia/issues/30372 [#30382]: https://github.com/JuliaLang/julia/issues/30382 +[#30494]: https://github.com/JuliaLang/julia/issues/30494 [#30577]: https://github.com/JuliaLang/julia/issues/30577 [#30583]: https://github.com/JuliaLang/julia/issues/30583 [#30584]: https://github.com/JuliaLang/julia/issues/30584 @@ -140,6 +147,7 @@ External dependencies [#31532]: https://github.com/JuliaLang/julia/issues/31532 [#31561]: https://github.com/JuliaLang/julia/issues/31561 [#31604]: https://github.com/JuliaLang/julia/issues/31604 +[#32260]: https://github.com/JuliaLang/julia/issues/32260 Julia v1.1 Release Notes ======================== diff --git a/NEWS.md b/NEWS.md index d6d10fe1fad8f..d13aa9dfc016b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -67,18 +67,12 @@ Standard library changes must be compatible with `m`, `n`, and `eltype(colptr)`. * `sparse(I, J, V, m, n)` verifies lengths of `I`, `J`, `V` are equal and compatible with `eltype(I)` and `m`, `n`. -* The `sprand` function is now 2 to 5 times faster ([#30494]). As a consequence of this change, the random stream of matrices produced with `sprand` and `sprandn` has changed. #### Dates * `DateTime` and `Time` formatting/parsing now supports 12-hour clocks with AM/PM via `I` and `p` codes, similar to `strftime` ([#32308]). * Fixed `repr` such that it displays `Time` as it would be entered in Julia ([#32103]). -#### Sockets - -* `getipaddrs` returns IP addresses in the order provided by libuv ([#32260]). -* `getipaddr` prefers to return the first `IPv4` interface address provided by libuv ([#32260]). - #### Statistics * `mean` now accepts both a function argument and a `dims` keyword ([#31576]). @@ -126,7 +120,6 @@ Tooling Improvements [#32122]: https://github.com/JuliaLang/julia/issues/32122 [#32133]: https://github.com/JuliaLang/julia/issues/32133 [#32174]: https://github.com/JuliaLang/julia/issues/32174 -[#32260]: https://github.com/JuliaLang/julia/issues/32260 [#32300]: https://github.com/JuliaLang/julia/issues/32300 [#32308]: https://github.com/JuliaLang/julia/issues/32308 [#32309]: https://github.com/JuliaLang/julia/issues/32309