From 4331b240e5568dabbec3ed02fd4f7820bbc543fa Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 15 Jun 2020 14:44:33 -0400 Subject: [PATCH] Add keyword argument constant propogation to News (#36292) I think https://github.com/JuliaLang/julia/pull/35976 is a pretty big deal since it makes all of SciML suddenly infer a lot better, and probably another big library that's splatting keyword arguments. So I added a note to the compiler/runtime improvements. --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index b6ffe8c872af5..1671dad1c5685 100644 --- a/NEWS.md +++ b/NEWS.md @@ -17,6 +17,7 @@ Compiler/Runtime improvements * All platforms can now use `@executable_path` within `jl_load_dynamic_library()`. This allows executable-relative paths to be embedded within executables on all platforms, not just MacOS, which the syntax is borrowed from. ([#35627]) +* Constant propogation now occurs through keyword arguments ([#35976]) Command-line option changes ---------------------------