https://github.com/JuliaLang/julia
Revision 807ae7166131ee69d6230d1884be4da80b622e61 authored by Miguel Madrid Mencía on 05 September 2018, 09:25:19 UTC, committed by Fredrik Ekre on 05 September 2018, 09:25:19 UTC
1 parent 3fbdc9b
Raw File
Tip revision: 807ae7166131ee69d6230d1884be4da80b622e61 authored by Miguel Madrid Mencía on 05 September 2018, 09:25:19 UTC
Fix: Enum values doesn't display UInt8 correctly (#29035)
Tip revision: 807ae71
NEWS.md
Julia v1.0.0 Release Notes
==========================

Julia v1.0 is identical to the v0.7 release, with the exception that
it removes all deprecations and deprecation related warnings. When
upgrading a codebase from v0.6, the process is to first get the code
to work on v0.7, and fix all the deprecation warnings. Once the code
runs on v0.7 without warnings, it should be good to run on v1.0.

Refer to the [Release Notes for
v0.7](https://github.com/JuliaLang/julia/blob/master/HISTORY.md) for a
detailed list of changes from Julia v0.6.

Standard Library Changes
------------------------

* The `Libdl` module's methods `dlopen()` and `dlsym()` have gained a
  `throw_error` keyword argument, replacing the now-deprecated `dlopen_e()`
  and `dlsym_e()` methods.  When `throw_error` is `false`, failure to locate
  a shared library or symbol will return `nothing` rather than `C_NULL`.
  ([#28888])

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

* The old package manager (now called `OldPkg`) has been moved to a
  separate repository at https://github.com/JuliaArchive/OldPkg.jl ([#27930])

<!--- generated by NEWS-update.jl: -->
[#27930]: https://github.com/JuliaLang/julia/issues/27930
[#28888]: https://github.com/JuliaLang/julia/issues/28888
back to top