From c9f9f55bde88a0b48d96c787bdaf53e7bdfbc303 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Sat, 23 Jul 2016 14:24:30 -0400 Subject: [PATCH] Update NEWS. Remove DEBUGGER.md [ci skip] --- DEBUGGER.md | 6 ------ NEWS.md | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 6 deletions(-) delete mode 100644 DEBUGGER.md diff --git a/DEBUGGER.md b/DEBUGGER.md deleted file mode 100644 index 6caf8e7f69a77..0000000000000 --- a/DEBUGGER.md +++ /dev/null @@ -1,6 +0,0 @@ -The Julia Debugger ------------------- - -To install the Julia debugger, run `Pkg.add("Gallium")` and see documentation at - -https://github.com/Keno/Gallium.jl#gallium diff --git a/NEWS.md b/NEWS.md index 746dc70713396..93161dc5c6618 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,27 @@ Julia v0.5.0 Release Notes ========================== +Along with a long list of language features and performance +improvements listed below, this Julia release includes: + + * The [Julia debugger](https://github.com/Keno/Gallium.jl). Install + it with `Pkg.add("Gallium")`, and the debugger + documentation](https://github.com/Keno/Gallium.jl#gallium) should + get you going. Also, do see the [JuliaCon + talk](https://www.youtube.com/watch?v=e6-hcOHO0tc&list=PLP8iPy9hna6SQPwZUDtAM59-wPzCPyD_S&index=5). + + * The [Juno IDE](http://junolab.org) has matured significantly, and + also includes support for plotting and debugging. + + * Experimental support for + [multi-threading](http://docs.julialang.org/en/latest/manual/parallel-computing/#multi-threading-experimental). This + makes it easy to parallelize loops with independent iterations in + a common address space with the `@threads` macro. + + * A convenient C++ FFI in + [Cxx.jl](https://github.com/Keno/Cxx.jl). Using it requires + building Julia with some additional build flags that will build clang along with llvm. + New language features --------------------- @@ -46,6 +67,8 @@ New language features operator names like `Base.≤` should now use `Base.:≤` (prefixed by `@compat` if you need 0.4 compatibility via the `Compat` package). + * Experimental support for [multi-threading](http://docs.julialang.org/en/latest/manual/parallel-computing/#multi-threading-experimental). + New architectures -----------------