Skip to content

Commit d50859c

Browse files
committed
Update whatsnew
1 parent ed6d422 commit d50859c

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

WHATSNEW.rst

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ ProPlot v0.7.0 (2021-07-##)
111111
otherwise (:commit:`6d7444fe`). Styles otherwise build on matplotlib defaults.
112112
* When using ``medians=True`` or ``means=True`` with `indicate_error` plot simple
113113
error bars by default instead of bars and "boxes" (:commit:`4e30f415`). Only plot
114-
"boxes" by default for violin plots.
114+
"boxes" with central "markers" by default for violin plots (:commit:`13b45ccd`).
115115
* `legend_wrapper` no longer returns the background patch generated for centered-row
116116
legends (:pr:`254`). This is consistent with `colorbar_wrapper` not returning
117117
background patches generated for inset colorbars. Until proplot adds new subclasses,
@@ -141,10 +141,10 @@ ProPlot v0.7.0 (2021-07-##)
141141
on polar projections" feature (:commit:`c9ca0bdd`).
142142
* Add `queue` keyword to `colorbar` and `legend` to support workflow where users
143143
successively add handles to location (:pr:`254`).
144-
* Add `nozero` keyword arg to `cmap_changer` to remove the zero contour
144+
* Add `nozero` keyword arg to `apply_cmap` to remove the zero contour
145145
from automatically generated levels (:commit:`10e0f13b`).
146146
Example usage: ``ax.contour(x, y, z, nozero=True)``.
147-
* Add `positive` and `negative` keyword args to `cmap_changer` for requesting
147+
* Add `positive` and `negative` keyword args to `apply_cmap` for requesting
148148
automatically-generated all-positive or all-negative levels (:commit:`335d58f4`).
149149
Example usage: ``ax.contourf(x, y, z, positive=True)``.
150150
* Add `xmin`, `xmax`, `ymin`, and `ymax` keyword args to
@@ -211,7 +211,7 @@ ProPlot v0.7.0 (2021-07-##)
211211
content due to adding as children (:issue:`223`).
212212
* Fix issue where default layout in complex subplot grids with non-adjacent
213213
edges is incorrect (:issue:`221`).
214-
* Fix issue where `cycle_changer` fails to merge mean-uncertainty legend handles
214+
* Fix issue where `apply_cycle` fails to merge mean-uncertainty legend handles
215215
due to presence of placeholder labels (:commit:`4e30f415`).
216216
* Fix issue where `standardize_1d` inappropriately infers legend entries from
217217
y-coordinate metadata rather than column metadata (:commit:`4e30f415`).
@@ -278,13 +278,15 @@ ProPlot v0.7.0 (2021-07-##)
278278

279279
.. rubric:: Documentation
280280

281-
* Major clean up of "Why ProPlot?" page and user guide example.
282-
* Rename "Changelog" to "What's New?" and list all contributors in "About the Authors".
281+
* Major clean up of "Why ProPlot?" page and user guide pages.
283282
* Fix incomplete ``cmap.from_file`` docstrings (:commit:`54f1bc7c`).
284-
* Move public/documented function `make_mapping_array` to private API, following lead
285-
of matplotlib's `makeMappingArray` (:commit:`66ae574b`).
286-
* Move public/documented functions `cmap_changer` and `cycle_changer`
287-
to `apply_cmap` and `apply_cycle` (:commit:`###`).
283+
* Rename "Changelog" to "What's New?" and list all contributors in "About the Authors".
284+
* Rename public/documented funcs ending in `_wrapper` to ending in `_extras` to avoid
285+
implication they are the only funcs wrapping those commands (:commit:`d1e1e85b`).
286+
* Rename public/documented func `make_mapping_array` to private function,
287+
following lead of matplotlib's `makeMappingArray` (:commit:`66ae574b`).
288+
* Rename public/documented funcs `cmap_changer` and `cycle_changer`
289+
to `apply_cmap` and `apply_cycle` (:commit:`86f7699a`).
288290

289291

290292
ProPlot v0.6.4 (2020-06-13)
@@ -407,7 +409,7 @@ ProPlot v0.6.0 (2020-05-20)
407409
width (:pr:`166`, :commit:`f801852b`). Many were changed for no good reason.
408410
* Change default line style for geographic gridlines from ``':'`` to ``'-'``
409411
and match style from primary gridlines (:pr:`166`, :commit:`f801852b`).
410-
* Rename `add_errorbars` to `~proplot.axes.plot.indicate_error` and rename
412+
* Rename `add_errorbars` to `~proplot.axes.indicate_error` and rename
411413
various keyword args (:pr:`166`, :commit:`d8c50a8d`).
412414
* Remove ``'rgbcycle'`` setting (:pr:`166`, :commit:`6653b7f0`).
413415
* Deprecate support for "parametric" plots inside `~matplotlib.axes.Axes.plot`,
@@ -488,12 +490,12 @@ ProPlot v0.6.0 (2020-05-20)
488490
colormap (:pr:`171`, :commit:`4583736`).
489491
* Support passing colormap objects, not just names, to `~proplot.demos.show_cmaps`
490492
and `~proplot.demos.show_cycles` (:pr:`171`, :commit:`7f8ca59f`).
491-
* Add options to `~proplot.axes.plot.indicate_error` for adding *shading*
493+
* Add options to `~proplot.axes.indicate_error` for adding *shading*
492494
to arbitrary plots (:pr:`166`, :commit:`d8c50a8d`). Also support automatic legend
493495
entries for shading and ensure `indicate_error` preserves metadata.
494496
* Wrap ``pcolorfast`` just like ``pcolor`` and ``pcolormesh`` are
495497
wrapped (:pr:`166`, :commit:`50a262dd`).
496-
* Add ``negpos`` feature to `~proplot.axes.plot.bar_wrapper` and new :rcraw:`negcolor`
498+
* Add ``negpos`` feature to `~proplot.axes.bar_wrapper` and new :rcraw:`negcolor`
497499
and :rcraw:`poscolor` rc keyword arguments (:pr:`166`, :commit:`ab4d6746`).
498500
* Support `~matplotlib.axes.Axes.vlines` and `~matplotlib.axes.Axes.hlines`
499501
flexible arguments and add ``negpos`` feature

0 commit comments

Comments
 (0)