Skip to content

Commit 9b0c334

Browse files
jorisvandenbosscheTomAugspurger
authored andcommitted
DOC: clean-up whatsnew file for 0.21.1 (#18690)
(cherry picked from commit 16de5f9)
1 parent 3e4a3dd commit 9b0c334

File tree

1 file changed

+24
-40
lines changed

1 file changed

+24
-40
lines changed

doc/source/whatsnew/v0.21.1.txt

+24-40
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,23 @@
33
v0.21.1
44
-------
55

6-
This is a minor release from 0.21.1 and includes a number of deprecations, new
7-
features, enhancements, and performance improvements along with a large number
8-
of bug fixes. We recommend that all users upgrade to this version.
6+
This is a minor bug-fix release in the 0.21.x series and includes some small regression fixes,
7+
bug fixes and performance improvements.
8+
We recommend that all users upgrade to this version.
9+
10+
Highlights include:
11+
12+
- Temporarily restore matplotlib datetime plotting functionality. This should
13+
resolve issues for users who relied implicitly on pandas to plot datetimes
14+
with matplotlib. See :ref:`here <whatsnew_0211.special>`.
15+
- Improvements to the Parquet IO functions introduced in 0.21.0. See
16+
:ref:`here <whatsnew_0211.enhancements.parquet>`.
17+
18+
19+
.. contents:: What's new in v0.21.1
20+
:local:
21+
:backlinks: none
22+
923

1024
.. _whatsnew_0211.special:
1125

@@ -42,9 +56,13 @@ registering them when they want them.
4256
New features
4357
~~~~~~~~~~~~
4458

45-
-
46-
-
47-
-
59+
.. _whatsnew_0211.enhancements.parquet:
60+
61+
Improvements to the Parquet IO functionality
62+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
63+
64+
- :func:`read_parquet` now allows to specify the columns to read from a parquet file (:issue:`18154`)
65+
- :func:`read_parquet` now allows to specify kwargs which are passed to the respective engine (:issue:`18216`)
4866

4967
.. _whatsnew_0211.enhancements.other:
5068

@@ -53,7 +71,6 @@ Other Enhancements
5371

5472
- :meth:`Timestamp.timestamp` is now available in Python 2.7. (:issue:`17329`)
5573
- :class:`Grouper` and :class:`TimeGrouper` now have a friendly repr output (:issue:`18203`).
56-
-
5774

5875
.. _whatsnew_0211.deprecations:
5976

@@ -69,17 +86,6 @@ Performance Improvements
6986
~~~~~~~~~~~~~~~~~~~~~~~~
7087

7188
- Improved performance of plotting large series/dataframes (:issue:`18236`).
72-
-
73-
-
74-
75-
.. _whatsnew_0211.docs:
76-
77-
Documentation Changes
78-
~~~~~~~~~~~~~~~~~~~~~
79-
80-
-
81-
-
82-
-
8389

8490
.. _whatsnew_0211.bug_fixes:
8591

@@ -97,7 +103,6 @@ Conversion
97103
- Bug in :func:`DataFrame.to_dict` where columns of datetime that are tz-aware were not converted to required arrays when used with ``orient='records'``, raising``TypeError` (:issue:`18372`)
98104
- Bug in :class:`DateTimeIndex` and :meth:`date_range` where mismatching tz-aware ``start`` and ``end`` timezones would not raise an err if ``end.tzinfo`` is None (:issue:`18431`)
99105
- Bug in :meth:`Series.fillna` which raised when passed a long integer on Python 2 (:issue:`18159`).
100-
-
101106

102107
Indexing
103108
^^^^^^^^
@@ -107,7 +112,6 @@ Indexing
107112
- Bug in :class:`IntervalIndex` constructor when a list of intervals is passed with non-default ``closed`` (:issue:`18334`)
108113
- Bug in ``Index.putmask`` when an invalid mask passed (:issue:`18368`)
109114
- Bug in masked assignment of a ``timedelta64[ns]`` dtype ``Series``, incorrectly coerced to float (:issue:`18493`)
110-
-
111115

112116
I/O
113117
^^^
@@ -117,8 +121,6 @@ I/O
117121
- Bug in :func:`read_csv` for handling null values in index columns when specifying ``na_filter=False`` (:issue:`5239`)
118122
- Bug in :func:`read_csv` when reading numeric category fields with high cardinality (:issue:`18186`)
119123
- Bug in :meth:`DataFrame.to_csv` when the table had ``MultiIndex`` columns, and a list of strings was passed in for ``header`` (:issue:`5539`)
120-
- :func:`read_parquet` now allows to specify the columns to read from a parquet file (:issue:`18154`)
121-
- :func:`read_parquet` now allows to specify kwargs which are passed to the respective engine (:issue:`18216`)
122124
- Bug in parsing integer datetime-like columns with specified format in ``read_sql`` (:issue:`17855`).
123125
- Bug in :meth:`DataFrame.to_msgpack` when serializing data of the numpy.bool_ datatype (:issue:`18390`)
124126
- Bug in :func:`read_json` not decoding when reading line deliminted JSON from S3 (:issue:`17200`)
@@ -130,8 +132,6 @@ Plotting
130132
^^^^^^^^
131133

132134
- Bug in ``DataFrame.plot()`` and ``Series.plot()`` with :class:`DatetimeIndex` where a figure generated by them is not pickleable in Python 3 (:issue:`18439`)
133-
-
134-
-
135135

136136
Groupby/Resample/Rolling
137137
^^^^^^^^^^^^^^^^^^^^^^^^
@@ -140,15 +140,6 @@ Groupby/Resample/Rolling
140140
- Bug in ``DataFrame.resample(...)`` when there is a time change (DST) and resampling frequecy is 12h or higher (:issue:`15549`)
141141
- Bug in ``pd.DataFrameGroupBy.count()`` when counting over a datetimelike column (:issue:`13393`)
142142
- Bug in ``rolling.var`` where calculation is inaccurate with a zero-valued array (:issue:`18430`)
143-
-
144-
-
145-
146-
Sparse
147-
^^^^^^
148-
149-
-
150-
-
151-
-
152143

153144
Reshaping
154145
^^^^^^^^^
@@ -164,7 +155,6 @@ Numeric
164155
- Bug in ``pd.Series.rolling.skew()`` and ``rolling.kurt()`` with all equal values has floating issue (:issue:`18044`)
165156
- Bug in :class:`TimedeltaIndex` subtraction could incorrectly overflow when ``NaT`` is present (:issue:`17791`)
166157
- Bug in :class:`DatetimeIndex` subtracting datetimelike from DatetimeIndex could fail to overflow (:issue:`18020`)
167-
-
168158

169159
Categorical
170160
^^^^^^^^^^^
@@ -180,9 +170,3 @@ String
180170
^^^^^^
181171

182172
- :meth:`Series.str.split()` will now propogate ``NaN`` values across all expanded columns instead of ``None`` (:issue:`18450`)
183-
184-
Other
185-
^^^^^
186-
187-
-
188-
-

0 commit comments

Comments
 (0)