Skip to content

Commit d4ece13

Browse files
committed
DOC: whatsnew updates
1 parent a8be55c commit d4ece13

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

doc/source/release.rst

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ Highlights include:
5353
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
5454
- API breaking ``.resample`` changes to make it more ``.groupby`` like, see :ref:`here <whatsnew_0180.breaking.resample>`.
5555
- Removal of support for deprecated float indexers; these will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
56+
- The ``.to_xarray()`` function has been added for compatibility with the `xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
57+
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`, and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>` and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
5658

5759
See the :ref:`v0.18.0 Whatsnew <whatsnew_0180>` overview for an extensive list
5860
of all enhancements and bugs that have been fixed in 0.17.1.

doc/source/whatsnew/v0.18.0.txt

+8-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Highlights include:
2222
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
2323
- API breaking ``.resample`` changes to make it more ``.groupby`` like, see :ref:`here <whatsnew_0180.breaking.resample>`.
2424
- Removal of support for deprecated float indexers; these will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
25+
- The ``.to_xarray()`` function has been added for compatibility with the `xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
26+
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`, and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>` and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
27+
2528

2629
Check the :ref:`API Changes <whatsnew_0180.api_breaking>` and :ref:`deprecations <whatsnew_0180.deprecations>` before updating.
2730

@@ -250,10 +253,12 @@ the ``extractall`` method returns all matches.
250253

251254
s.str.extractall("(?P<letter>[ab])(?P<digit>\d)")
252255

256+
.. _whatsnew_0180.enhancements.strcat:
257+
253258
Changes to str.cat
254259
^^^^^^^^^^^^^^^^^^
255260

256-
The :ref:`.str.cat <text.cat>` concatenates the members of a ``Series``. Before, if ``NaN`` values were present in the Series, calling ``.str.cat()`` on it would return ``NaN``, unlike the rest of the ``Series.str.*`` API. This behavior has been amended to ignore ``NaN`` values by default. (:issue:`11435`).
261+
The method ``.str.cat()`` concatenates the members of a ``Series``. Before, if ``NaN`` values were present in the Series, calling ``.str.cat()`` on it would return ``NaN``, unlike the rest of the ``Series.str.*`` API. This behavior has been amended to ignore ``NaN`` values by default. (:issue:`11435`).
257262

258263
A new, friendlier ``ValueError`` is added to protect against the mistake of supplying the ``sep`` as an arg, rather than as a kwarg. (:issue:`11334`).
259264

@@ -417,8 +422,8 @@ Other enhancements
417422
- ``DataFrame.select_dtypes`` now allows the ``np.float16`` typecode (:issue:`11990`)
418423
- ``pivot_table()`` now accepts most iterables for the ``values`` parameter (:issue:`12017`)
419424
- Added Google ``BigQuery`` service account authentication support, which enables authentication on remote servers. (:issue:`11881`). For further details see :ref:`here <io.bigquery_authentication>`
420-
- ``HDFStore`` is now iterable: ``for k in store`` is equivalent to ``for k in store.keys()`` (:issue: `12221`).
421-
425+
- ``HDFStore`` is now iterable: ``for k in store`` is equivalent to ``for k in store.keys()`` (:issue:`12221`).
426+
- The entire codebase has been ``PEP``-ified (:issue:`12096`)
422427

423428
.. _whatsnew_0180.api_breaking:
424429

0 commit comments

Comments
 (0)