@@ -14,11 +14,56 @@ What's New
14
14
15
15
np.random.seed(123456 )
16
16
17
- .. _whats-new.0.18.3 :
18
17
19
- v0.18.3 (unreleased)
18
+ .. _whats-new.0.19.1 :
19
+
20
+ v0.19.1 (unreleased)
20
21
---------------------
21
22
23
+ New Features
24
+ ~~~~~~~~~~~~
25
+ - Add a option to disable the use of ``bottleneck `` (:pull: `5560 `)
26
+ By `Justus Magin <https://github.com/keewis >`_.
27
+ - Added ``**kwargs `` argument to :py:meth: `open_rasterio ` to access overviews (:issue: `3269 `).
28
+ By `Pushkar Kopparla <https://github.com/pkopparla >`_.
29
+
30
+
31
+ Breaking changes
32
+ ~~~~~~~~~~~~~~~~
33
+
34
+
35
+ Deprecations
36
+ ~~~~~~~~~~~~
37
+
38
+
39
+ Bug fixes
40
+ ~~~~~~~~~
41
+
42
+
43
+ Documentation
44
+ ~~~~~~~~~~~~~
45
+
46
+
47
+ Internal Changes
48
+ ~~~~~~~~~~~~~~~~
49
+
50
+ .. _whats-new.0.19.0 :
51
+
52
+ v0.19.0 (23 July 2021)
53
+ ----------------------
54
+
55
+ This release brings improvements to plotting of categorical data, the ability to specify how attributes
56
+ are combined in xarray operations, a new high-level :py:func: `unify_chunks ` function, as well as various
57
+ deprecations, bug fixes, and minor improvements.
58
+
59
+
60
+ Many thanks to the 29 contributors to this release!:
61
+
62
+ Andrew Williams, Augustus, Aureliana Barghini, Benoit Bovy, crusaderky, Deepak Cherian, ellesmith88,
63
+ Elliott Sales de Andrade, Giacomo Caria, github-actions[bot], Illviljan, Joeperdefloep, joooeey, Julia Kent,
64
+ Julius Busecke, keewis, Mathias Hauser, Matthias Göbel, Mattia Almansi, Maximilian Roos, Peter Andreas Entschev,
65
+ Ray Bell, Sander, Santiago Soler, Sebastian, Spencer Clark, Stephan Hoyer, Thomas Hirtz, Thomas Nicholas.
66
+
22
67
New Features
23
68
~~~~~~~~~~~~
24
69
- Allow passing argument ``missing_dims `` to :py:meth: `Variable.transpose ` and :py:meth: `Dataset.transpose `
@@ -56,8 +101,10 @@ New Features
56
101
- Allow removal of the coordinate attribute ``coordinates `` on variables by setting ``.attrs['coordinates']= None ``
57
102
(:issue: `5510 `).
58
103
By `Elle Smith <https://github.com/ellesmith88 >`_.
59
- - Add a option to disable the use of ``bottleneck `` (:pull: `5560 `)
60
- By `Justus Magin <https://github.com/keewis >`_.
104
+ - Added :py:meth: `DataArray.to_numpy `, :py:meth: `DataArray.as_numpy `, and :py:meth: `Dataset.as_numpy `. (:pull: `5568 `).
105
+ By `Tom Nicholas <https://github.com/TomNicholas >`_.
106
+ - Units in plot labels are now automatically inferred from wrapped :py:meth: `pint.Quantity ` arrays. (:pull: `5561 `).
107
+ By `Tom Nicholas <https://github.com/TomNicholas >`_.
61
108
62
109
Breaking changes
63
110
~~~~~~~~~~~~~~~~
@@ -75,6 +122,10 @@ Breaking changes
75
122
Deprecations
76
123
~~~~~~~~~~~~
77
124
125
+ - Removed the deprecated ``dim `` kwarg to :py:func: `DataArray.integrate ` (:pull: `5630 `)
126
+ - Removed the deprecated ``keep_attrs `` kwarg to :py:func: `DataArray.rolling ` (:pull: `5630 `)
127
+ - Removed the deprecated ``keep_attrs `` kwarg to :py:func: `DataArray.coarsen ` (:pull: `5630 `)
128
+ - Completed deprecation of passing an ``xarray.DataArray `` to :py:func: `Variable ` - will now raise a ``TypeError `` (:pull: `5630 `)
78
129
79
130
Bug fixes
80
131
~~~~~~~~~
@@ -99,10 +150,6 @@ Bug fixes
99
150
By `Augustus Ijams <https://github.com/aijams >`_.
100
151
101
152
102
- Documentation
103
- ~~~~~~~~~~~~~
104
-
105
-
106
153
Internal Changes
107
154
~~~~~~~~~~~~~~~~
108
155
- Run CI on the first & last python versions supported only; currently 3.7 & 3.9.
@@ -111,7 +158,6 @@ Internal Changes
111
158
- Publish test results & timings on each PR.
112
159
(:pull: `5537 `)
113
160
By `Maximilian Roos <https://github.com/max-sixty >`_.
114
-
115
161
- Explicit indexes refactor: add a ``xarray.Index.query() `` method in which
116
162
one may eventually provide a custom implementation of label-based data
117
163
selection (not ready yet for public use). Also refactor the internal,
@@ -156,13 +202,6 @@ New Features
156
202
- Raise more informative error when decoding time variables with invalid reference dates.
157
203
(:issue: `5199 `, :pull: `5288 `). By `Giacomo Caria <https://github.com/gcaria >`_.
158
204
159
- Breaking changes
160
- ~~~~~~~~~~~~~~~~
161
-
162
-
163
- Deprecations
164
- ~~~~~~~~~~~~
165
-
166
205
167
206
Bug fixes
168
207
~~~~~~~~~
0 commit comments