Skip to content

Commit a2de9c6

Browse files
committed
DOC: release.rst update
1 parent 7cd9496 commit a2de9c6

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

doc/source/release.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,15 @@ API Changes
6969
- ``dtypes`` and ``ftypes`` now return a series with ``dtype=object`` on empty containers (:issue:`5740`)
7070
- The ``interpolate`` ``downcast`` keyword default has been changed from ``infer`` to
7171
``None``. This is to preseve the original dtype unless explicitly requested otherwise (:issue:`6290`).
72-
- allow a Series to utilize index methods for its index type, e.g. ``Series.year`` is now defined
72+
- allow a Series to utilize index methods depending on its index type, e.g. ``Series.year`` is now defined
7373
for a Series with a ``DatetimeIndex`` or a ``PeriodIndex``; trying this on a non-supported Index type will
7474
now raise a ``TypeError``. (:issue:`4551`, :issue:`4056`, :issue:`5519`)
7575

7676
The following affected:
77-
- ``date,time,year,month,day,hour,minute,second,weekofyear``
78-
- ``week,dayofweek,dayofyear,quarter,microsecond,nanosecond,qyear``
77+
- ``date,time,year,month,day``
78+
- ``hour,minute,second,weekofyear``
79+
- ``week,dayofweek,dayofyear,quarter``
80+
- ``microsecond,nanosecond,qyear``
7981
- ``min(),max()``
8082

8183
Experimental Features
@@ -94,8 +96,8 @@ Improvements to existing features
9496
- improve performance of slice indexing on Series with string keys (:issue:`6341`, :issue:`6372`)
9597
- implement joining a single-level indexed DataFrame on a matching column of a multi-indexed DataFrame (:issue:`3662`)
9698
- Performance improvement in indexing into a multi-indexed Series (:issue:`5567`)
97-
- Testing statements updated to use specialized asserts (:issue: `6175`)
98-
- ``Series.rank()`` now has a percentage rank option (:issue: `5971`)
99+
- Testing statements updated to use specialized asserts (:issue:`6175`)
100+
- ``Series.rank()`` now has a percentage rank option (:issue:`5971`)
99101
- ``quotechar``, ``doublequote``, and ``escapechar`` can now be specified when
100102
using ``DataFrame.to_csv`` (:issue:`5414`, :issue:`4528`)
101103

doc/source/v0.14.0.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,15 @@ API changes
3131

3232
- The ``DataFrame.interpolate()`` ``downcast`` keyword default has been changed from ``infer`` to
3333
``None``. This is to preseve the original dtype unless explicitly requested otherwise (:issue:`6290`).
34-
- allow a Series to utilize index methods for its index type, e.g. ``Series.year`` is now defined
34+
- allow a Series to utilize index methods depending on its index type, e.g. ``Series.year`` is now defined
3535
for a Series with a ``DatetimeIndex`` or a ``PeriodIndex``; trying this on a non-supported Index type will
3636
now raise a ``TypeError``. (:issue:`4551`, :issue:`4056`, :issue:`5519`)
3737

3838
The following affected:
39-
- ``date,time,year,month,day,hour,minute,second,weekofyear``
40-
- ``week,dayofweek,dayofyear,quarter,microsecond,nanosecond,qyear``
39+
- ``date,time,year,month,day``
40+
- ``hour,minute,second,weekofyear``
41+
- ``week,dayofweek,dayofyear,quarter``
42+
- ``microsecond,nanosecond,qyear``
4143
- ``min(),max()``
4244

4345
.. ipython:: python

0 commit comments

Comments
 (0)