@@ -15,67 +15,8 @@ What's New
15
15
16
16
.. _whats-new.0.10.0 :
17
17
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
+ ------------------------------
79
20
80
21
.. caution ::
81
22
@@ -324,6 +265,9 @@ Enhancements
324
265
functions on data stored as dask arrays (:issue: `1279 `).
325
266
By `Joe Hamman <https://github.com/jhamman >`_.
326
267
268
+ - Experimental support for the Dask collection interface (:issue: `1674 `).
269
+ By `Matthew Rocklin <https://github.com/mrocklin >`_.
270
+
327
271
Bug fixes
328
272
~~~~~~~~~
329
273
@@ -416,6 +360,54 @@ Bug fixes
416
360
- Fix ``rasterio `` backend for Rasterio versions 1.0alpha10 and newer.
417
361
(:issue: `1641 `). By `Chris Holden <https://github.com/ceholden >`_.
418
362
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
+
419
411
.. _whats-new.0.9.6 :
420
412
421
413
v0.9.6 (8 June 2017)
0 commit comments