Skip to content

Commit 8814f2f

Browse files
authored
Fix what's new for v0.9.2 (#1348)
1 parent 685ba06 commit 8814f2f

File tree

1 file changed

+34
-24
lines changed

1 file changed

+34
-24
lines changed

doc/whats-new.rst

Lines changed: 34 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,54 +16,64 @@ What's New
1616
1717
.. _whats-new.0.9.2:
1818

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.
2123

2224
Enhancements
2325
~~~~~~~~~~~~
24-
- ``rolling`` on Dataset is now supported (:issue:`859`).
26+
27+
- ``.rolling()`` on Dataset is now supported (:issue:`859`).
2528
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
29+
2630
- 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`).
2933
By `Joe Hamman <https://github.com/jhamman>`_.
3034

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>`_.
3439

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>`_.
3944

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>`_.
4552

4653
- The ``repr()`` of ``Dataset`` and ``DataArray`` attributes uses a similar
4754
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``.
5159
By `Zac Hatfield-Dodds <https://github.com/Zac-HD>`_.
5260

5361
- Enhanced tests suite by use of ``@slow`` and ``@flaky`` decorators, which are
5462
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
5665
`Phillip J. Wolfram <https://github.com/pwolfram>`_.
5766

5867
Bug fixes
5968
~~~~~~~~~
60-
- ``rolling`` now keeps its original dimension order (:issue:`1125`).
69+
- Rolling operations now keep preserve original dimension order (:issue:`1125`).
6170
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
6271

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
6473
(:issue:`1140`).
6574
`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`).
6777
By `Stephan Hoyer <https://github.com/shoyer>`_ and
6878
`Phillip J. Wolfram <https://github.com/pwolfram>`_.
6979

0 commit comments

Comments
 (0)