From ff0f1c5c500a585d2cbe1c6fe445222ded4ea703 Mon Sep 17 00:00:00 2001 From: "Michael K. Borregaard" Date: Tue, 3 Oct 2017 10:28:54 +0200 Subject: [PATCH] update news.md --- NEWS.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 603ed9da..491b699f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,7 +3,7 @@ #### notes on release changes, ongoing development, and future planned work -- All new development should target 0.12! +- All new development should target 0.13! - Minor version 0.11 is the last one to support Julia 0.5!! - Critical bugfixes only - `backports` branch is for Julia 0.5 @@ -11,6 +11,29 @@ --- ## (current master) +## 0.13.0 + +- support `plotattributes` rather than `d` in recipes +- no longer export `w`, `h` and names from Measures.jl; use `using Plots.PlotMeasures` to get these names back +- `bar_width` now depends on the minimum distance between bars, not the mean +- better automatic x axis limits for plotting Functions +- `tick_direction` attribute now allows ticks to be on the inside of the plot border +- removed a bug where `p1 = plot(randn(10)); plot(p1, p2)` made `display(p1)` impossible +- allow `plot([])` to generate an empty plot +- add `origin` framestyle +- ensure finite bin number on histograms with only one unique value +- better automatic histogram bins for 2d histograms +- more informative error message on passing unsupported seriestype in a recipe +- allow grouping in user recipes +- GR now has `line_z` and `fill_z` attributes for determining the color of shapes and lines +- change GR default view angle for 3D plots to match that of PyPlot +- fix `clims` on GR +- fix `marker_z` for plotly backend +- implement `framestyle` for plotly +- fix logscale bug error for values < 1e-16 on pyplot +- fix an issue on pyplot where >1 colorbar would be shown if there was >1 series +- fix `writemime` for eps + ## 0.12.4 - added a new `framestyle` argument with choices: :box, :semi, :axes, :grid and :none