The execution time is similar for this small example, but there are 10x more allocations on 1.9-rc3. ``` using BenchmarkTools using Plots const xx = randn(20, 3000) @btime plot(xx; color = :blue, label = nothing); # 1.8.5 # 1.214 s (392640 allocations: 31.88 MiB) # 1.9-rc3 # 1.166 s (3964617 allocations: 86.43 MiB) ``` From https://github.com/JuliaPlots/Plots.jl/issues/4742