@@ -16,9 +16,21 @@ What's New
1616
1717 .. _whats-new.0.16.0 :
1818
19- v0.16.0 (unreleased )
19+ v0.16.0 (2020-07-11 )
2020---------------------
2121
22+ Thank you to all contributors who built this release:
23+
24+ Akio Taniguchi, Andrew Williams, Aurélien Ponte, Benoit Bovy, Dave Cole, David
25+ Brochart, Deepak Cherian, Elliott Sales de Andrade, Etienne Combrisson, Hossein
26+ Madadi, Huite, Joe Hamman, Kai Mühlbauer, Keisuke Fujii, Maik Riechert, Marek
27+ Jacob, Mathias Hauser, Matthieu Ancellin, Maximilian Roos, Noah D Brenowitz,
28+ Oriol Abril, Pascal Bourgault, Phillip Butcher, Prajjwal Nijhara, Ray Bell, Ryan
29+ Abernathey, Ryan May, Spencer Clark, Spencer Hill, Srijan Saurav, Stephan Hoyer,
30+ Taher Chegini, Todd, Tom Nicholas, Yohai Bar Sinai, Yunus Sevinchan,
31+ arabidopsis, aurghs, clausmichele, dmey, johnomotani, keewis, raphael dussin,
32+ risebell
33+
2234Breaking changes
2335~~~~~~~~~~~~~~~~
2436
@@ -46,21 +58,6 @@ Breaking changes
4658 default (:issue: `4176 `)
4759 By `Stephan Hoyer <https://github.com/shoyer >`_.
4860
49- Enhancements
50- ~~~~~~~~~~~~
51- - Performance improvement of :py:meth: `DataArray.interp ` and :py:func: `Dataset.interp `
52- For orthogonal linear- and nearest-neighbor interpolation, we do 1d-interpolation sequentially
53- rather than interpolating in multidimensional space. (:issue: `2223 `)
54- By `Keisuke Fujii <https://github.com/fujiisoup >`_.
55- - Major performance improvement for :py:meth: `Dataset.from_dataframe ` when the
56- dataframe has a MultiIndex (:pull: `4184 `).
57- By `Stephan Hoyer <https://github.com/shoyer >`_.
58- - :py:meth: `DataArray.reset_index ` and :py:meth: `Dataset.reset_index ` now keep
59- coordinate attributes (:pull: `4103 `). By `Oriol Abril <https://github.com/OriolAbril >`_.
60- - Axes kwargs such as ``facecolor `` can now be passed to :py:meth: `DataArray.plot ` in ``subplot_kws ``.
61- This works for both single axes plots and FacetGrid plots.
62- By `Raphael Dussin <https://github.com/raphaeldussin >`_.
63-
6461New Features
6562~~~~~~~~~~~~
6663- :py:meth: `DataArray.argmin ` and :py:meth: `DataArray.argmax ` now support
@@ -70,15 +67,19 @@ New Features
7067 (:pull: `3936 `)
7168 By `John Omotani <https://github.com/johnomotani >`_, thanks to `Keisuke Fujii
7269 <https://github.com/fujiisoup> `_ for work in :pull: `1469 `.
70+ - Added :py:func: `xarray.cov ` and :py:func: `xarray.corr ` (:issue: `3784 `, :pull: `3550 `, :pull: `4089 `).
71+ By `Andrew Williams <https://github.com/AndrewWilliams3142 >`_ and `Robin Beer <https://github.com/r-beer >`_.
72+ - Implement :py:meth: `DataArray.idxmax `, :py:meth: `DataArray.idxmin `,
73+ :py:meth: `Dataset.idxmax `, :py:meth: `Dataset.idxmin `. (:issue: `60 `, :pull: `3871 `)
74+ By `Todd Jennings <https://github.com/toddrjen >`_
75+ - Added :py:meth: `DataArray.polyfit ` and :py:func: `xarray.polyval ` for fitting
76+ polynomials. (:issue: `3349 `, :pull: `3733 `, :pull: `4099 `)
77+ By `Pascal Bourgault <https://github.com/aulemahal >`_.
7378- Added :py:meth: `xarray.infer_freq ` for extending frequency inferring to CFTime indexes and data (:pull: `4033 `).
7479 By `Pascal Bourgault <https://github.com/aulemahal >`_.
7580- ``chunks='auto' `` is now supported in the ``chunks `` argument of
7681 :py:meth: `Dataset.chunk `. (:issue: `4055 `)
7782 By `Andrew Williams <https://github.com/AndrewWilliams3142 >`_
78- - Added :py:func: `xarray.cov ` and :py:func: `xarray.corr ` (:issue: `3784 `, :pull: `3550 `, :pull: `4089 `).
79- By `Andrew Williams <https://github.com/AndrewWilliams3142 >`_ and `Robin Beer <https://github.com/r-beer >`_.
80- - Added :py:meth: `DataArray.polyfit ` and :py:func: `xarray.polyval ` for fitting polynomials. (:issue: `3349 `, :pull: `3733 `, :pull: `4099 `)
81- By `Pascal Bourgault <https://github.com/aulemahal >`_.
8283- Control over attributes of result in :py:func: `merge `, :py:func: `concat `,
8384 :py:func: `combine_by_coords ` and :py:func: `combine_nested ` using
8485 combine_attrs keyword argument. (:issue: `3865 `, :pull: `3877 `)
@@ -88,15 +89,6 @@ New Features
8889 the exception when a dimension passed to ``isel `` is not present with a
8990 warning, or just ignore the dimension. (:issue: `3866 `, :pull: `3923 `)
9091 By `John Omotani <https://github.com/johnomotani >`_
91- - Limited the length of array items with long string reprs to a
92- reasonable width (:pull: `3900 `)
93- By `Maximilian Roos <https://github.com/max-sixty >`_
94- - Limited the number of lines of large arrays when numpy reprs would have greater than 40.
95- (:pull: `3905 `)
96- By `Maximilian Roos <https://github.com/max-sixty >`_
97- - Implement :py:meth: `DataArray.idxmax `, :py:meth: `DataArray.idxmin `,
98- :py:meth: `Dataset.idxmax `, :py:meth: `Dataset.idxmin `. (:issue: `60 `, :pull: `3871 `)
99- By `Todd Jennings <https://github.com/toddrjen >`_
10092- Support dask handling for :py:meth: `DataArray.idxmax `, :py:meth: `DataArray.idxmin `,
10193 :py:meth: `Dataset.idxmax `, :py:meth: `Dataset.idxmin `. (:pull: `3922 `, :pull: `4135 `)
10294 By `Kai Mühlbauer <https://github.com/kmuehlbauer >`_ and `Pascal Bourgault <https://github.com/aulemahal >`_.
@@ -128,7 +120,30 @@ New Features
128120 (:py:func: `xarray.open_dataarray `, :py:func: `xarray.open_dataarray `,
129121 :py:func: `xarray.decode_cf `) that allows to disable/enable the decoding of timedeltas
130122 independently of time decoding (:issue: `1621 `)
131- `Aureliana Barghini <https://github.com/aurghs> `
123+ `Aureliana Barghini <https://github.com/aurghs >`_
124+
125+ Enhancements
126+ ~~~~~~~~~~~~
127+ - Performance improvement of :py:meth: `DataArray.interp ` and :py:func: `Dataset.interp `
128+ For orthogonal linear- and nearest-neighbor interpolation, we do 1d-interpolation sequentially
129+ rather than interpolating in multidimensional space. (:issue: `2223 `)
130+ By `Keisuke Fujii <https://github.com/fujiisoup >`_.
131+ - Major performance improvement for :py:meth: `Dataset.from_dataframe ` when the
132+ dataframe has a MultiIndex (:pull: `4184 `).
133+ By `Stephan Hoyer <https://github.com/shoyer >`_.
134+ - :py:meth: `DataArray.reset_index ` and :py:meth: `Dataset.reset_index ` now keep
135+ coordinate attributes (:pull: `4103 `). By `Oriol Abril <https://github.com/OriolAbril >`_.
136+ - Axes kwargs such as ``facecolor `` can now be passed to :py:meth: `DataArray.plot ` in ``subplot_kws ``.
137+ This works for both single axes plots and FacetGrid plots.
138+ By `Raphael Dussin <https://github.com/raphaeldussin >`_.
139+ - Array items with long string reprs are now limited to a
140+ reasonable width (:pull: `3900 `)
141+ By `Maximilian Roos <https://github.com/max-sixty >`_
142+ - Large arrays whose numpy reprs would have greater than 40 lines are now
143+ limited to a reasonable length.
144+ (:pull: `3905 `)
145+ By `Maximilian Roos <https://github.com/max-sixty >`_
146+
132147
133148Bug fixes
134149~~~~~~~~~
0 commit comments