Skip to content

Commit 6d64c58

Browse files
committedNov 20, 2017
Release v0.10.0
1 parent 6463504 commit 6d64c58

File tree

2 files changed

+16
-28
lines changed

2 files changed

+16
-28
lines changed
 

‎doc/whats-new.rst

+14-26
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,8 @@ What's New
1515
1616
.. _whats-new.0.10.0:
1717

18-
v0.10.0 (unreleased)
19-
--------------------
20-
21-
Bug fixes
22-
~~~~~~~~~
23-
24-
- Fixed unexpected behavior in ``Dataset.set_index()`` and
25-
``DataArray.set_index()`` introduced by Pandas 0.21.0. Setting a new
26-
index with a single variable resulted in 1-level
27-
``pandas.MultiIndex`` instead of a simple ``pandas.Index``
28-
(:issue:`1722`). By `Benoit Bovy <https://github.com/benbovy>`_.
29-
30-
- Fixed unexpected memory loading of backend arrays after ``print``.
31-
(:issue:`1720`). By `Keisuke Fujii <https://github.com/fujiisoup>`_.
32-
33-
v0.10.0 rc2 (13 November 2017)
34-
------------------------------
35-
36-
.. caution::
37-
38-
You're reached the documentation for the **pre-release version of xarray.**
39-
Please test out this release candidate and report any issues on GitHub. If
40-
all goes well, the final v0.10.0 release will come out in about a week. To
41-
install, use::
42-
43-
pip install --pre --upgrade --upgrade-strategy=only-if-needed xarray
18+
v0.10.0 (20 November 2017)
19+
--------------------------
4420

4521
This is a major release that includes bug fixes, new features and a few
4622
backwards incompatible changes. Highlights include:
@@ -423,6 +399,18 @@ Bug fixes after rc1
423399
- Remove netCDF dependency from rasterio backend tests.
424400
By `Matti Eskelinen <https://github.com/maaleske>`_
425401

402+
Bug fixes after rc2
403+
~~~~~~~~~~~~~~~~~~~
404+
405+
- Fixed unexpected behavior in ``Dataset.set_index()`` and
406+
``DataArray.set_index()`` introduced by Pandas 0.21.0. Setting a new
407+
index with a single variable resulted in 1-level
408+
``pandas.MultiIndex`` instead of a simple ``pandas.Index``
409+
(:issue:`1722`). By `Benoit Bovy <https://github.com/benbovy>`_.
410+
411+
- Fixed unexpected memory loading of backend arrays after ``print``.
412+
(:issue:`1720`). By `Keisuke Fujii <https://github.com/fujiisoup>`_.
413+
426414
.. _whats-new.0.9.6:
427415

428416
v0.9.6 (8 June 2017)

‎setup.py

+2-2
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 = 'rc2'
15+
QUALIFIER = ''
1616

1717

1818
DISTNAME = 'xarray'

0 commit comments

Comments
 (0)
Please sign in to comment.