https://github.com/JuliaLang/julia
Raw File
Tip revision: 83a7f3b5bebc300ca1ee4356dd8f7f25347c107e authored by Jeff Bezanson on 18 January 2019, 07:13:49 UTC
Add doc string for `=` (#30745)
Tip revision: 83a7f3b
NEWS.md
Julia v1.2 Release Notes
========================

New language features
---------------------

* The `extrema` function now accepts a function argument in the same manner as `minimum` and
  `maximum` ([#30323]).

Multi-threading changes
-----------------------

  * The `Condition` type now has a thread-safe replacement, accessed as `Threads.Condition`.
    With that addition, task scheduling primitives such as `ReentrantLock` are now thread-safe ([#30061]).

Language changes
----------------

* `Enum` now behaves like a scalar when used in broadcasting ([#30670]).

Command-line option changes
---------------------------


New library functions
---------------------

* `getipaddrs()` function returns all the IP addresses of the local machine ([#30349])

Standard library changes
------------------------

#### LinearAlgebra

* Added keyword arguments `rtol`, `atol` to `pinv` and `nullspace` ([#29998]).

#### SparseArrays

* performance improvements for sparse matrix-matrix multiplication ([#30372]).

#### Dates

* Fixed `repr` such that it displays `DateTime` as it would be entered in Julia ([#30200]).

#### Miscellaneous

* Since environment variables on Windows are case-insensitive, `ENV` now converts its keys
  to uppercase for display, iteration, and copying ([#30593]).

External dependencies
---------------------

* libgit2 has been updated to v0.27.7 ([#30584]).
* OpenBLAS has been updated to v0.3.5 ([#30583]).
* MbedTLS has been updated to v2.16.0 ([#30618]).

Deprecated or removed
---------------------


<!--- generated by NEWS-update.jl: -->
[#29998]: https://github.com/JuliaLang/julia/issues/29998
[#30061]: https://github.com/JuliaLang/julia/issues/30061
[#30200]: https://github.com/JuliaLang/julia/issues/30200
[#30323]: https://github.com/JuliaLang/julia/issues/30323
[#30349]: https://github.com/JuliaLang/julia/issues/30349
back to top