Skip to content

Commit 4ed58d9

Browse files
DOC: 0.22.0 release docs (#18983)
[ci skip]
1 parent 1bbd77a commit 4ed58d9

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

doc/source/release.rst

+21
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,27 @@ analysis / manipulation tool available in any language.
3737
* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
3838
* Documentation: http://pandas.pydata.org
3939

40+
pandas 0.22.0
41+
-------------
42+
43+
**Release date:** December 29, 2017
44+
45+
This is a major release from 0.21.1 and includes a single, API-breaking change.
46+
We recommend that all users upgrade to this version after carefully reading the
47+
release note.
48+
49+
The only changes are:
50+
51+
- The sum of an empty or all-*NA* ``Series`` is now ``0``
52+
- The product of an empty or all-*NA* ``Series`` is now ``1``
53+
- We've added a ``min_count`` parameter to ``.sum()`` and ``.prod()`` controlling
54+
the minimum number of valid values for the result to be valid. If fewer than
55+
``min_count`` non-*NA* values are present, the result is *NA*. The default is
56+
``0``. To return ``NaN``, the 0.21 behavior, use ``min_count=1``.
57+
58+
See the :ref:`v0.22.0 Whatsnew <whatsnew_0220>` overview for further explanation
59+
of all the places in the library this affects.
60+
4061
pandas 0.21.1
4162
-------------
4263

doc/source/whatsnew/v0.22.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _whatsnew_0220:
22

3-
v0.22.0
4-
-------
3+
v0.22.0 (December 29, 2017)
4+
---------------------------
55

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

0 commit comments

Comments
 (0)