Skip to content

DOC: 0.22.0 release docs #18983

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 29, 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
21 changes: 21 additions & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,27 @@ analysis / manipulation tool available in any language.
* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
* Documentation: http://pandas.pydata.org

pandas 0.22.0
-------------

**Release date:** December 29, 2017
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've set the release date as today. We'll update it if that slips at all.


This is a major release from 0.21.1 and includes a single, API-breaking change.
We recommend that all users upgrade to this version after carefully reading the
release note.

The only changes are:

- The sum of an empty or all-*NA* ``Series`` is now ``0``
- The product of an empty or all-*NA* ``Series`` is now ``1``
- We've added a ``min_count`` parameter to ``.sum()`` and ``.prod()`` controlling
the minimum number of valid values for the result to be valid. If fewer than
``min_count`` non-*NA* values are present, the result is *NA*. The default is
``0``. To return ``NaN``, the 0.21 behavior, use ``min_count=1``.

See the :ref:`v0.22.0 Whatsnew <whatsnew_0220>` overview for further explanation
of all the places in the library this affects.

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

Expand Down
4 changes: 2 additions & 2 deletions doc/source/whatsnew/v0.22.0.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _whatsnew_0220:

v0.22.0
-------
v0.22.0 (December 29, 2017)
---------------------------

This is a major release from 0.21.1 and includes a single, API-breaking change.
We recommend that all users upgrade to this version after carefully reading the
Expand Down