@@ -16,9 +16,21 @@ What's New
16
16
17
17
.. _whats-new.0.16.0 :
18
18
19
- v0.16.0 (unreleased )
19
+ v0.16.0 (2020-07-11 )
20
20
---------------------
21
21
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
+
22
34
Breaking changes
23
35
~~~~~~~~~~~~~~~~
24
36
@@ -46,21 +58,6 @@ Breaking changes
46
58
default (:issue: `4176 `)
47
59
By `Stephan Hoyer <https://github.com/shoyer >`_.
48
60
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
-
64
61
New Features
65
62
~~~~~~~~~~~~
66
63
- :py:meth: `DataArray.argmin ` and :py:meth: `DataArray.argmax ` now support
@@ -70,15 +67,19 @@ New Features
70
67
(:pull: `3936 `)
71
68
By `John Omotani <https://github.com/johnomotani >`_, thanks to `Keisuke Fujii
72
69
<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 >`_.
73
78
- Added :py:meth: `xarray.infer_freq ` for extending frequency inferring to CFTime indexes and data (:pull: `4033 `).
74
79
By `Pascal Bourgault <https://github.com/aulemahal >`_.
75
80
- ``chunks='auto' `` is now supported in the ``chunks `` argument of
76
81
:py:meth: `Dataset.chunk `. (:issue: `4055 `)
77
82
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 >`_.
82
83
- Control over attributes of result in :py:func: `merge `, :py:func: `concat `,
83
84
:py:func: `combine_by_coords ` and :py:func: `combine_nested ` using
84
85
combine_attrs keyword argument. (:issue: `3865 `, :pull: `3877 `)
@@ -88,15 +89,6 @@ New Features
88
89
the exception when a dimension passed to ``isel `` is not present with a
89
90
warning, or just ignore the dimension. (:issue: `3866 `, :pull: `3923 `)
90
91
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 >`_
100
92
- Support dask handling for :py:meth: `DataArray.idxmax `, :py:meth: `DataArray.idxmin `,
101
93
:py:meth: `Dataset.idxmax `, :py:meth: `Dataset.idxmin `. (:pull: `3922 `, :pull: `4135 `)
102
94
By `Kai Mühlbauer <https://github.com/kmuehlbauer >`_ and `Pascal Bourgault <https://github.com/aulemahal >`_.
@@ -128,7 +120,30 @@ New Features
128
120
(:py:func: `xarray.open_dataarray `, :py:func: `xarray.open_dataarray `,
129
121
:py:func: `xarray.decode_cf `) that allows to disable/enable the decoding of timedeltas
130
122
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
+
132
147
133
148
Bug fixes
134
149
~~~~~~~~~
0 commit comments