@@ -16,54 +16,64 @@ What's New
16
16
17
17
.. _whats-new.0.9.2 :
18
18
19
- v0.9.2 (unreleased)
20
- -------------------
19
+ v0.9.2 (2 April, 2017)
20
+ ----------------------
21
+
22
+ The minor release includes bug-fixes and backwards compatible enhancements.
21
23
22
24
Enhancements
23
25
~~~~~~~~~~~~
24
- - ``rolling `` on Dataset is now supported (:issue: `859 `).
26
+
27
+ - ``.rolling() `` on Dataset is now supported (:issue: `859 `).
25
28
By `Keisuke Fujii <https://github.com/fujiisoup >`_.
29
+
26
30
- When bottleneck version 1.1 or later is installed, use bottleneck for rolling
27
- `var `, `argmin `, `argmax `, and `rank ` computations. Also, ` rolling.median `
28
- now also accepts a `min_periods ` argument (:issue: `1276 `).
31
+ `` var `` , `` argmin `` , `` argmax `` , and `` rank `` computations. Also, rolling
32
+ median now accepts a `` min_periods ` ` argument (:issue: `1276 `).
29
33
By `Joe Hamman <https://github.com/jhamman >`_.
30
34
31
- - When `plot() ` is called on a 2D DataArray and only one dimension is
32
- specified with `x= ` or `y= `, the other dimension is now guessed. By
33
- `Vincent Noel <https://github.com/vnoel >`_.
35
+ - When ``.plot() `` is called on a 2D DataArray and only one dimension is
36
+ specified with ``x= `` or ``y= ``, the other dimension is now guessed
37
+ (:issue: `1291 `).
38
+ By `Vincent Noel <https://github.com/vnoel >`_.
34
39
35
- Added new method :py:meth: `~Dataset.assign_attrs ` to ``DataArray `` and
36
- ``Dataset ``, a chained-method compatible implementation of the
37
- ``dict.update `` method on attrs (:issue: `1281 `).
38
- By `Henry S. Harrison <https://hsharrison.github.io >`_.
40
+ - Added new method :py:meth: `~Dataset.assign_attrs ` to ``DataArray `` and
41
+ ``Dataset ``, a chained-method compatible implementation of the
42
+ ``dict.update `` method on attrs (:issue: `1281 `).
43
+ By `Henry S. Harrison <https://hsharrison.github.io >`_.
39
44
40
- - It is now possible to set the ``autoclose=True `` argument to
41
- :py:func: `~xarray.open_mfdataset ` to explicitly close opened files when not
42
- in use to prevent occurrence of an OS Error related to too many open files.
43
- Note, the default is ``autoclose=False ``, which is consistent with previous
44
- xarray behavior. By `Phillip J. Wolfram <https://github.com/pwolfram >`_.
45
+ - Added new ``autoclose=True `` argument to
46
+ :py:func: `~xarray.open_mfdataset ` to explicitly close opened files when not in
47
+ use to prevent occurrence of an OS Error related to too many open files
48
+ (:issue: `1198 `).
49
+ Note, the default is ``autoclose=False ``, which is consistent with
50
+ previous xarray behavior.
51
+ By `Phillip J. Wolfram <https://github.com/pwolfram >`_.
45
52
46
53
- The ``repr() `` of ``Dataset `` and ``DataArray `` attributes uses a similar
47
54
format to coordinates and variables, with vertically aligned entries
48
- truncated to fit on a single line. Hopefully this will stop people writing
49
- ``data.attrs = {} `` and discarding metadata in notebooks for the sake of
50
- cleaner output. The full metadata is still available as ``data.attrs ``.
55
+ truncated to fit on a single line (:issue: `1319 `). Hopefully this will stop
56
+ people writing ``data.attrs = {} `` and discarding metadata in notebooks for
57
+ the sake of cleaner output. The full metadata is still available as
58
+ ``data.attrs ``.
51
59
By `Zac Hatfield-Dodds <https://github.com/Zac-HD >`_.
52
60
53
61
- Enhanced tests suite by use of ``@slow `` and ``@flaky `` decorators, which are
54
62
controlled via ``--run-flaky `` and ``--skip-slow `` command line arguments
55
- to ``py.test ``. By `Stephan Hoyer <https://github.com/shoyer >`_ and
63
+ to ``py.test `` (:issue: `1336 `).
64
+ By `Stephan Hoyer <https://github.com/shoyer >`_ and
56
65
`Phillip J. Wolfram <https://github.com/pwolfram >`_.
57
66
58
67
Bug fixes
59
68
~~~~~~~~~
60
- - `` rolling `` now keeps its original dimension order (:issue: `1125 `).
69
+ - Rolling operations now keep preserve original dimension order (:issue: `1125 `).
61
70
By `Keisuke Fujii <https://github.com/fujiisoup >`_.
62
71
63
- - Fix ``sel `` with ``method='nearest' `` on Python 2.7 and 64-bit Windows
72
+ - Fixed ``sel `` with ``method='nearest' `` on Python 2.7 and 64-bit Windows
64
73
(:issue: `1140 `).
65
74
`Stephan Hoyer <https://github.com/shoyer >`_.
66
- - Fixes ``where `` with ``drop='True' `` for empty masks (:issue: `1341 `).
75
+
76
+ - Fixed ``where `` with ``drop='True' `` for empty masks (:issue: `1341 `).
67
77
By `Stephan Hoyer <https://github.com/shoyer >`_ and
68
78
`Phillip J. Wolfram <https://github.com/pwolfram >`_.
69
79
0 commit comments