Skip to content

Commit 93f58a6

Browse files
committed
Doc fixes for v0.10.9
1 parent ab96954 commit 93f58a6

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

doc/computation.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,15 +208,17 @@ coordinates. :py:meth:`~xarray.DataArray.differentiate` computes derivatives by
208208
central finite differences using their coordinates,
209209

210210
.. ipython:: python
211-
a = xr.DataArray([0, 1, 2, 3], dims=['x'], coords=[0.1, 0.11, 0.2, 0.3])
211+
212+
a = xr.DataArray([0, 1, 2, 3], dims=['x'], coords=[[0.1, 0.11, 0.2, 0.3]])
212213
a
213214
a.differentiate('x')
214215
215216
This method can be used also for multidimensional arrays,
216217

217218
.. ipython:: python
219+
218220
a = xr.DataArray(np.arange(8).reshape(4, 2), dims=['x', 'y'],
219-
coords=[0.1, 0.11, 0.2, 0.3])
221+
coords={'x': [0.1, 0.11, 0.2, 0.3]})
220222
a.differentiate('x')
221223
222224
.. note::

doc/roadmap.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _roadmap:
2+
13
Development roadmap
24
===================
35

doc/whats-new.rst

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,17 @@ What's New
2727

2828
.. _whats-new.0.10.9:
2929

30-
v0.10.9 (unreleased)
31-
--------------------
30+
v0.10.9 (21 September 2019)
31+
---------------------------
3232

33-
Documentation
34-
~~~~~~~~~~~~~
33+
This minor release contains a number of backwards compatible enhancements.
34+
35+
Announcements of note:
36+
37+
- Xarray is now a NumFOCUS fiscally sponsored project! Read
38+
`the anouncment <https://numfocus.org/blog/xarray-joins-numfocus-sponsored-projects>`_
39+
for more details.
40+
- We have a new :doc:`roadmap` that outlines our future development plans.
3541

3642
Enhancements
3743
~~~~~~~~~~~~
@@ -51,7 +57,8 @@ Enhancements
5157
(:issue:`2230`)
5258
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
5359

54-
- :py:meth:`plot()` now accepts the kwargs ``xscale, yscale, xlim, ylim, xticks, yticks`` just like Pandas. Also ``xincrease=False, yincrease=False`` now use matplotlib's axis inverting methods instead of setting limits.
60+
- :py:meth:`plot()` now accepts the kwargs
61+
``xscale, yscale, xlim, ylim, xticks, yticks`` just like Pandas. Also ``xincrease=False, yincrease=False`` now use matplotlib's axis inverting methods instead of setting limits.
5562
By `Deepak Cherian <https://github.com/dcherian>`_. (:issue:`2224`)
5663

5764
- DataArray coordinates and Dataset coordinates and data variables are
@@ -118,7 +125,7 @@ Bug fixes
118125
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
119126

120127
- Now :py:func:`xr.apply_ufunc` raises a ValueError when the size of
121-
``input_core_dims`` is inconsistent with the number of arguments.
128+
``input_core_dims`` is inconsistent with the number of arguments.
122129
(:issue:`2341`)
123130
By `Keisuke Fujii <https://github.com/fujiisoup>`_.
124131

0 commit comments

Comments
 (0)