Skip to content

DOC: Update relase notes #18739

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 76 additions & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,82 @@ analysis / manipulation tool available in any language.
* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
* Documentation: http://pandas.pydata.org

pandas 0.21.1
-------------

**Release date:** December 12, 2017

This is a minor bug-fix release in the 0.21.x series and includes some small
regression fixes, bug fixes and performance improvements. We recommend that all
users upgrade to this version.

Highlights include:

- Temporarily restore matplotlib datetime plotting functionality. This should
resolve issues for users who relied implicitly on pandas to plot datetimes
with matplotlib. See :ref:`here <whatsnew_0211.special>`.
- Improvements to the Parquet IO functions introduced in 0.21.0. See
:ref:`here <whatsnew_0211.enhancements.parquet>`.

See the :ref:`v0.21.1 Whatsnew <whatsnew_0211>` overview for an extensive list
of all the changes for 0.21.1.

Thanks
~~~~~~

A total of 46 people contributed to this release. People with a "+" by their
names contributed a patch for the first time.

Contributors
============

* Aaron Critchley +
* Alex Rychyk
* Alexander Buchkovsky +
* Alexander Michael Schade +
* Chris Mazzullo
* Cornelius Riemenschneider +
* Dave Hirschfeld +
* David Fischer +
* David Stansby +
* Dror Atariah +
* Eric Kisslinger +
* Hans +
* Ingolf Becker +
* Jan Werkmann +
* Jeff Reback
* Joris Van den Bossche
* Jörg Döpfert +
* Kevin Kuhl +
* Krzysztof Chomski +
* Leif Walsh
* Licht Takeuchi
* Manraj Singh +
* Matt Braymer-Hayes +
* Michael Waskom +
* Mie~~~ +
* Peter Hoffmann +
* Robert Meyer +
* Sam Cohan +
* Sietse Brouwer +
* Sven +
* Tim Swast
* Tom Augspurger
* Wes Turner
* William Ayd +
* Yee Mey +
* bolkedebruin +
* cgohlke
* derestle-htwg +
* fjdiod +
* gabrielclow +
* gfyoung
* ghasemnaddaf +
* jbrockmendel
* jschendel
* miker985 +
* topper-123

pandas 0.21.0
-------------

Expand Down
10 changes: 5 additions & 5 deletions doc/source/whatsnew/v0.21.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ We recommend that all users upgrade to this version.
Highlights include:

- Temporarily restore matplotlib datetime plotting functionality. This should
resolve issues for users who relied implicitly on pandas to plot datetimes
with matplotlib. See :ref:`here <whatsnew_0211.special>`.
resolve issues for users who implicitly relied on pandas to plot datetimes
with matplotlib. See :ref:`here <whatsnew_0211.converters>`.
- Improvements to the Parquet IO functions introduced in 0.21.0. See
:ref:`here <whatsnew_0211.enhancements.parquet>`.

Expand All @@ -21,7 +21,7 @@ Highlights include:
:backlinks: none


.. _whatsnew_0211.special:
.. _whatsnew_0211.converters:

Restore Matplotlib datetime Converter Registration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -34,8 +34,8 @@ pandas``.
In pandas 0.21.0, we required users to explicitly register the
converter. This caused problems for some users who relied on those converters
being present for regular ``matplotlib.pyplot`` plotting methods, so we're
temporarily reverting that change; pandas will again register the converters on
import.
temporarily reverting that change; pandas 0.21.1 again registers the converters on
import, just like before 0.21.0.

We've added a new option to control the converters:
``pd.options.plotting.matplotlib.register_converters``. By default, they are
Expand Down