From e22db0c696b424e262279977ecc5f9910a3c9da4 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Sat, 13 Feb 2016 20:33:08 +0100 Subject: [PATCH] DOC: some rewording of highlights --- doc/source/release.rst | 21 ++++++++++++++------- doc/source/whatsnew/v0.18.0.txt | 29 ++++++++++++++++------------- 2 files changed, 30 insertions(+), 20 deletions(-) diff --git a/doc/source/release.rst b/doc/source/release.rst index 51554b54dfb83..37ca1be631c32 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -48,13 +48,20 @@ users upgrade to this version. Highlights include: -- Window functions are now methods on ``.groupby`` like objects, see :ref:`here `. -- ``pd.test()`` top-level nose test runner is available (:issue:`4327`) -- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` for memory savings, see :ref:`here `. -- API breaking ``.resample`` changes to make it more ``.groupby`` like, see :ref:`here `. -- Removal of support for deprecated float indexers; these will now raise a ``TypeError``, see :ref:`here `. -- The ``.to_xarray()`` function has been added for compatibility with the `xarray package `__, see :ref:`here `. -- Addition of the :ref:`.str.extractall() method `, and API changes to the :ref:`.str.extract() method ` and :ref:`.str.cat() method `. +- Moving and expanding window functions are now methods on Series and DataFrame, + similar to ``.groupby``, see :ref:`here `. +- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` + for memory savings, see :ref:`here `. +- API breaking change to the ``.resample`` method to make it more ``.groupby`` + like, see :ref:`here `. +- Removal of support for positional indexing with floats, which was deprecated + since 0.14.0. This will now raise a ``TypeError``, see :ref:`here `. +- The ``.to_xarray()`` function has been added for compatibility with the + `xarray package `__, see :ref:`here `. +- Addition of the :ref:`.str.extractall() method `, + and API changes to the :ref:`.str.extract() method ` + and :ref:`.str.cat() method `. +- ``pd.test()`` top-level nose test runner is available (:issue:`4327`). See the :ref:`v0.18.0 Whatsnew ` overview for an extensive list of all enhancements and bugs that have been fixed in 0.17.1. diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index a0a6332c5dc63..781bba50c3c24 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -9,22 +9,25 @@ users upgrade to this version. .. warning:: - pandas >= 0.18.0 will no longer support compatibility with Python version 2.6 (:issue:`7718`) - -.. warning:: - - pandas >= 0.18.0 will no longer support compatibility with Python version 3.3 (:issue:`11273`) + pandas >= 0.18.0 no longer supports compatibility with Python version 2.6 + and 3.3 (:issue:`7718`, :issue:`11273`) Highlights include: -- Window functions are now methods on ``.groupby`` like objects, see :ref:`here `. -- ``pd.test()`` top-level nose test runner is available (:issue:`4327`) -- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` for memory savings, see :ref:`here `. -- API breaking ``.resample`` changes to make it more ``.groupby`` like, see :ref:`here `. -- Removal of support for deprecated float indexers; these will now raise a ``TypeError``, see :ref:`here `. -- The ``.to_xarray()`` function has been added for compatibility with the `xarray package `__, see :ref:`here `. -- Addition of the :ref:`.str.extractall() method `, and API changes to the :ref:`.str.extract() method ` and :ref:`.str.cat() method `. - +- Moving and expanding window functions are now methods on Series and DataFrame, + similar to ``.groupby``, see :ref:`here `. +- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` + for memory savings, see :ref:`here `. +- API breaking change to the ``.resample`` method to make it more ``.groupby`` + like, see :ref:`here `. +- Removal of support for positional indexing with floats, which was deprecated + since 0.14.0. This will now raise a ``TypeError``, see :ref:`here `. +- The ``.to_xarray()`` function has been added for compatibility with the + `xarray package `__, see :ref:`here `. +- Addition of the :ref:`.str.extractall() method `, + and API changes to the :ref:`.str.extract() method ` + and :ref:`.str.cat() method `. +- ``pd.test()`` top-level nose test runner is available (:issue:`4327`). Check the :ref:`API Changes ` and :ref:`deprecations ` before updating.