@@ -13,10 +13,19 @@ What's New
1313 import xarray as xr
1414 np.random.seed(123456 )
1515
16- .. _whats-new.0.9.7 :
16+ .. _whats-new.0.10.0 :
1717
18- v0.10.0 (unreleased)
19- --------------------
18+ v0.10.0 rc1 (30 October 2017)
19+ -----------------------------
20+
21+ .. caution ::
22+
23+ You're reached the documentation for the **pre-release version of xarray. **
24+ Please test out this release candidate and report any issues on GitHub. If
25+ all goes well, the final v0.10.0 release will come out in about a week. To
26+ install, use::
27+
28+ pip install --pre --upgrade --upgrade-strategy=only-if-needed xarray
2029
2130This is a major release that includes bug fixes, new features and a few
2231backwards incompatible changes. Highlights include:
@@ -116,7 +125,7 @@ Breaking changes
116125Enhancements
117126~~~~~~~~~~~~
118127
119- **New functions/methods **:
128+ **New functions/methods **
120129
121130- New helper function :py:func: `~xarray.apply_ufunc ` for wrapping functions
122131 written to work on NumPy arrays to support labels on xarray objects
@@ -157,7 +166,7 @@ Enhancements
157166 (:issue: `1485 `).
158167 By `Joe Hamman <https://github.com/jhamman >`_.
159168
160- **Performance improvements **:
169+ **Performance improvements **
161170
162171- :py:func: `~xarray.concat ` was computing variables that aren't in memory
163172 (e.g. dask-based) multiple times; :py:func: `~xarray.open_mfdataset `
@@ -169,7 +178,7 @@ Enhancements
169178- Speed-up (x 100) of :py:func: `~xarray.conventions.decode_cf_datetime `.
170179 By `Christian Chwala <https://github.com/cchwala >`_.
171180
172- **IO related improvements **:
181+ **IO related improvements **
173182
174183- Unicode strings (``str `` on Python 3) are now round-tripped successfully even
175184 when written as character arrays (e.g., as netCDF3 files or when using
@@ -235,7 +244,7 @@ Enhancements
235244- Support reading and writing unlimited dimensions with h5netcdf (:issue: `1636 `).
236245 By `Joe Hamman <https://github.com/jhamman >`_.
237246
238- **Other improvements **:
247+ **Other improvements **
239248
240249- Added ``_ipython_key_completions_ `` to xarray objects, to enable
241250 autocompletion for dictionary-like access in IPython, e.g.,
@@ -260,8 +269,8 @@ Bug fixes
260269~~~~~~~~~
261270
262271- Suppress ``RuntimeWarning `` issued by ``numpy `` for "invalid value comparisons"
263- (e.g. NaNs ). Xarray now behaves similarly to Pandas in its treatment of
264- binary and unary operations on objects with `` NaN``s (:issue:`1657`).
272+ (e.g. `` NaN `` ). Xarray now behaves similarly to Pandas in its treatment of
273+ binary and unary operations on objects with NaNs (:issue: `1657 `).
265274 By `Joe Hamman <https://github.com/jhamman >`_.
266275
267276- Unsigned int support for reduce methods with ``skipna=True ``
0 commit comments