@@ -11,6 +11,7 @@ sources of the changes you are experiencing.
1111For new features that were added to matplotlib, please see
1212:ref: `whats-new `.
1313
14+
1415Changes in 2.0.0
1516================
1617
@@ -20,6 +21,26 @@ Color of Axes
2021The ``axisbg `` and ``axis_bgcolor `` properties on ``Axes `` have been
2122deprecated in favor of ``facecolor ``.
2223
24+
25+ Changes in 1.5.2
26+ ================
27+
28+
29+ Default Behavior Changes
30+ ------------------------
31+
32+ Changed default ``autorange `` behavior in boxplots
33+ ``````````````````````````````````````````````````
34+
35+ Prior to v1.5.2, the whiskers of boxplots would extend to the mininum
36+ and maximum values if the quartiles were all equal (i.e., Q1 = median
37+ = Q3). This behavior has been disabled by default to restore consistency
38+ with other plotting packages.
39+
40+ To restore the old behavior, simply set ``autorange=True `` when
41+ calling ``plt.boxplot ``.
42+
43+
2344Changes in 1.5.0
2445================
2546
@@ -81,7 +102,7 @@ by the new keyword argument `corner_mask`, or if this is not specified then
81102the new rcParam `contour.corner_mask ` instead. The new default behaviour is
82103equivalent to using `corner_mask=True `; the previous behaviour can be obtained
83104using `corner_mask=False ` or by changing the rcParam. The example
84- http://matplotlib.org/examples/pylab_examples/contour_corner_mask.py
105+ http://matplotlib.org/examples/pylab_examples/contour_corner_mask.html
85106demonstrates the difference. Use of the old contouring algorithm, which is
86107obtained with `corner_mask='legacy' `, is now deprecated.
87108
0 commit comments