Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shoyer committed Nov 20, 2017
1 parent 6463504 commit 6d64c58
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 28 deletions.
40 changes: 14 additions & 26 deletions doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,8 @@ What's New
.. _whats-new.0.10.0:

v0.10.0 (unreleased)
--------------------

Bug fixes
~~~~~~~~~

- Fixed unexpected behavior in ``Dataset.set_index()`` and
``DataArray.set_index()`` introduced by Pandas 0.21.0. Setting a new
index with a single variable resulted in 1-level
``pandas.MultiIndex`` instead of a simple ``pandas.Index``
(:issue:`1722`). By `Benoit Bovy <https://github.com/benbovy>`_.

- Fixed unexpected memory loading of backend arrays after ``print``.
(:issue:`1720`). By `Keisuke Fujii <https://github.com/fujiisoup>`_.

v0.10.0 rc2 (13 November 2017)
------------------------------

.. caution::

You're reached the documentation for the **pre-release version of xarray.**
Please test out this release candidate and report any issues on GitHub. If
all goes well, the final v0.10.0 release will come out in about a week. To
install, use::

pip install --pre --upgrade --upgrade-strategy=only-if-needed xarray
v0.10.0 (20 November 2017)
--------------------------

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

Bug fixes after rc2
~~~~~~~~~~~~~~~~~~~

- Fixed unexpected behavior in ``Dataset.set_index()`` and
``DataArray.set_index()`` introduced by Pandas 0.21.0. Setting a new
index with a single variable resulted in 1-level
``pandas.MultiIndex`` instead of a simple ``pandas.Index``
(:issue:`1722`). By `Benoit Bovy <https://github.com/benbovy>`_.

- Fixed unexpected memory loading of backend arrays after ``print``.
(:issue:`1720`). By `Keisuke Fujii <https://github.com/fujiisoup>`_.

.. _whats-new.0.9.6:

v0.9.6 (8 June 2017)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
MAJOR = 0
MINOR = 10
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = 'rc2'
QUALIFIER = ''


DISTNAME = 'xarray'
Expand Down

0 comments on commit 6d64c58

Please sign in to comment.