Skip to content

Commit 872edbe

Browse files
committed
Release v0.10.0rc2
1 parent ac854f0 commit 872edbe

File tree

2 files changed

+55
-63
lines changed

2 files changed

+55
-63
lines changed

doc/whats-new.rst

Lines changed: 53 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -15,67 +15,8 @@ What's New
1515
1616
.. _whats-new.0.10.0:
1717

18-
19-
v0.10.0 (unreleased)
20-
--------------------
21-
22-
Changes since v0.10.0 rc1 (Unreleased)
23-
--------------------------------------
24-
25-
- Experimental support for the Dask collection interface (:issue:`1674`).
26-
By `Matthew Rocklin <https://github.com/mrocklin>`_.
27-
28-
Bug fixes
29-
~~~~~~~~~
30-
31-
- Suppress warning in Ipython autocompletion, related to the deprecation
32-
of ``.T`` attributes (:issue:`1675`).
33-
By `Keisuke Fujii <https://github.com/fujiisoup>`_
34-
35-
- Fix a bug in lazily-indexing netCDF array. (:issue:`1688`)
36-
By `Keisuke Fujii <https://github.com/fujiisoup>`_
37-
38-
- (Internal bug) MemoryCachedArray now supports the orthogonal indexing.
39-
Also made some internal cleanups around array wrappers (:issue:`1429`).
40-
By `Keisuke Fujii <https://github.com/fujiisoup>`_
41-
42-
- (Internal bug) MemoryCachedArray now always wraps ``np.ndarray`` by
43-
``NumpyIndexingAdapter``. (:issue:`1694`)
44-
By `Keisuke Fujii <https://github.com/fujiisoup>`_
45-
46-
- Fix importing xarray when running Python with ``-OO`` (:issue:`1706`).
47-
By `Stephan Hoyer <https://github.com/shoyer>`_.
48-
49-
- Saving a netCDF file with a coordinates with a spaces in its names now raises
50-
an appropriate warning (:issue:`1689`).
51-
By `Stephan Hoyer <https://github.com/shoyer>`_.
52-
53-
- Fix two bugs that were preventing dask arrays from being specified as
54-
coordinates in the DataArray constructor (:issue:`1684`).
55-
By `Joe Hamman <https://github.com/jhamman>`_
56-
57-
- Fixed ``apply_ufunc`` with ``dask='parallelized'`` for scalar arguments
58-
(:issue:`1697`).
59-
- Fix "Chunksize cannot exceed dimension size" error when writing netCDF4 files
60-
loaded from disk (:issue:`1225`).
61-
By `Stephan Hoyer <https://github.com/shoyer>`_.
62-
63-
- Validate the shape of coordinates with names matching dimensions in the
64-
DataArray constructor (:issue:`1709`).
65-
By `Stephan Hoyer <https://github.com/shoyer>`_.
66-
67-
- Raise ``NotImplementedError`` when attempting to save a MultiIndex to a
68-
netCDF file (:issue:`1547`).
69-
By `Stephan Hoyer <https://github.com/shoyer>`_.
70-
71-
Testing
72-
~~~~~~~
73-
74-
- Remove netCDF dependency from rasterio backend tests.
75-
By `Matti Eskelinen <https://github.com/maaleske>`_
76-
77-
v0.10.0 rc1 (30 October 2017)
78-
-----------------------------
18+
v0.10.0 rc2 (13 November 2017)
19+
------------------------------
7920

8021
.. caution::
8122

@@ -324,6 +265,9 @@ Enhancements
324265
functions on data stored as dask arrays (:issue:`1279`).
325266
By `Joe Hamman <https://github.com/jhamman>`_.
326267

268+
- Experimental support for the Dask collection interface (:issue:`1674`).
269+
By `Matthew Rocklin <https://github.com/mrocklin>`_.
270+
327271
Bug fixes
328272
~~~~~~~~~
329273

@@ -416,6 +360,54 @@ Bug fixes
416360
- Fix ``rasterio`` backend for Rasterio versions 1.0alpha10 and newer.
417361
(:issue:`1641`). By `Chris Holden <https://github.com/ceholden>`_.
418362

363+
Bug fixes after rc1
364+
~~~~~~~~~~~~~~~~~~~
365+
366+
- Suppress warning in IPython autocompletion, related to the deprecation
367+
of ``.T`` attributes (:issue:`1675`).
368+
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
369+
370+
- Fix a bug in lazily-indexing netCDF array. (:issue:`1688`)
371+
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
372+
373+
- (Internal bug) MemoryCachedArray now supports the orthogonal indexing.
374+
Also made some internal cleanups around array wrappers (:issue:`1429`).
375+
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
376+
377+
- (Internal bug) MemoryCachedArray now always wraps ``np.ndarray`` by
378+
``NumpyIndexingAdapter``. (:issue:`1694`)
379+
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
380+
381+
- Fix importing xarray when running Python with ``-OO`` (:issue:`1706`).
382+
By `Stephan Hoyer <https://github.com/shoyer>`_.
383+
384+
- Saving a netCDF file with a coordinates with a spaces in its names now raises
385+
an appropriate warning (:issue:`1689`).
386+
By `Stephan Hoyer <https://github.com/shoyer>`_.
387+
388+
- Fix two bugs that were preventing dask arrays from being specified as
389+
coordinates in the DataArray constructor (:issue:`1684`).
390+
By `Joe Hamman <https://github.com/jhamman>`_.
391+
392+
- Fixed ``apply_ufunc`` with ``dask='parallelized'`` for scalar arguments
393+
(:issue:`1697`).
394+
By `Stephan Hoyer <https://github.com/shoyer>`_.
395+
396+
- Fix "Chunksize cannot exceed dimension size" error when writing netCDF4 files
397+
loaded from disk (:issue:`1225`).
398+
By `Stephan Hoyer <https://github.com/shoyer>`_.
399+
400+
- Validate the shape of coordinates with names matching dimensions in the
401+
DataArray constructor (:issue:`1709`).
402+
By `Stephan Hoyer <https://github.com/shoyer>`_.
403+
404+
- Raise ``NotImplementedError`` when attempting to save a MultiIndex to a
405+
netCDF file (:issue:`1547`).
406+
By `Stephan Hoyer <https://github.com/shoyer>`_.
407+
408+
- Remove netCDF dependency from rasterio backend tests.
409+
By `Matti Eskelinen <https://github.com/maaleske>`_
410+
419411
.. _whats-new.0.9.6:
420412

421413
v0.9.6 (8 June 2017)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
MAJOR = 0
1111
MINOR = 10
1212
MICRO = 0
13-
ISRELEASED = False
13+
ISRELEASED = True
1414
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
15-
QUALIFIER = 'rc1'
15+
QUALIFIER = 'rc2'
1616

1717

1818
DISTNAME = 'xarray'

0 commit comments

Comments
 (0)