Skip to content

Commit 4cdce82

Browse files
TomAugspurgerpcluo
authored andcommitted
DOC: Updated release notes for 0.20.1 (pandas-dev#16251)
* DOC: Updated release notes for 0.20.1 - Moved whatsnew for 0.20.1 -> 0.20.2 (unreleased) - Moved whatsnew for 0.20.0 -> 0.20.1 (releasing soon) - Added release note for pandas-dev#16250 * DOC: Move 0.20.1 to a note * DOC: Simplify excel style example
1 parent f529c19 commit 4cdce82

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

doc/source/whatsnew/v0.20.0.txt

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. _whatsnew_0200:
22

3-
v0.20.0 (May 4, 2017)
3+
v0.20.1 (May 5, 2017)
44
---------------------
55

66
This is a major release from 0.19.2 and includes a number of API changes, deprecations, new features,
@@ -30,6 +30,11 @@ Highlights include:
3030

3131
Check the :ref:`API Changes <whatsnew_0200.api_breaking>` and :ref:`deprecations <whatsnew_0200.deprecations>` before updating.
3232

33+
.. note::
34+
35+
This is a combined release for 0.20.0 and and 0.20.1.
36+
Version 0.20.1 contains one additional change for backwards-compatibility with downstream projects using pandas' ``utils`` routines. (:issue:`16250`)
37+
3338
.. contents:: What's new in v0.20.0
3439
:local:
3540
:backlinks: none
@@ -388,8 +393,7 @@ For example, after running the following, ``styled.xlsx`` renders as below:
388393
df
389394
styled = df.style.\
390395
applymap(lambda val: 'color: %s' % 'red' if val < 0 else 'black').\
391-
apply(lambda s: ['background-color: yellow' if v else ''
392-
for v in s == s.max()])
396+
highlight_max()
393397
styled.to_excel('styled.xlsx', engine='openpyxl')
394398

395399
.. image:: _static/style-excel.png
File renamed without changes.

0 commit comments

Comments
 (0)