Skip to content

Commit d876a9f

Browse files
committed
DOC: v0.16.0 updates / release note updates
1 parent 9714225 commit d876a9f

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

doc/source/release.rst

+5-2
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,17 @@ analysis / manipulation tool available in any language.
4848
pandas 0.16.0
4949
-------------
5050

51-
**Release date:** (February ??, 2015)
51+
**Release date:** (March 15, 2015)
5252

5353
This is a major release from 0.15.2 and includes a number of API changes, several new features, enhancements, and
5454
performance improvements along with a large number of bug fixes.
5555

5656
Highlights include:
5757

58-
- Allow Stata files to be read incrementally, support for long strings in Stata files (issue:`9493`:) :ref:`here<io.stata_reader>`.
58+
- ``DataFrame.assign`` method, see :ref:`here <whatsnew_0160.enhancements.assign>`
59+
- ``Series.to_coo/from_coo`` methods to interact with ``scipy.sparse``, see :ref:`here <whatsnew_0160.enhancements.sparse>`
60+
- Backwards incompatible change to ``Timedelta`` to conform the ``.seconds`` attribute with ``datetime.timedelta``, see :ref:`here <whatsnew_0160.api_breaking.timedelta>`
61+
- Changes to the ``.loc`` slicing API to conform with the behavior of ``.ix`` see :ref:`here <whatsnew_0160.api_breaking.indexing>`
5962

6063
See the :ref:`v0.16.0 Whatsnew <whatsnew_0160>` overview or the issue tracker on GitHub for an extensive list
6164
of all API changes, enhancements and bugs that have been fixed in 0.16.0.

doc/source/whatsnew/v0.16.0.txt

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
.. _whatsnew_0160:
22

3-
v0.16.0 (February ??, 2015)
4-
---------------------------
3+
v0.16.0 (March 15, 2015)
4+
------------------------
55

66
This is a major release from 0.15.2 and includes a small number of API changes, several new features,
77
enhancements, and performance improvements along with a large number of bug fixes. We recommend that all
88
users upgrade to this version.
99

1010
- Highlights include:
1111

12+
* ``DataFrame.assign`` method, see :ref:`here <whatsnew_0160.enhancements.assign>`
13+
* ``Series.to_coo/from_coo`` methods to interact with ``scipy.sparse``, see :ref:`here <whatsnew_0160.enhancements.sparse>`
14+
* Backwards incompatible change to ``Timedelta`` to conform the ``.seconds`` attribute with ``datetime.timedelta``, see :ref:`here <whatsnew_0160.api_breaking.timedelta>`
15+
* Changes to the ``.loc`` slicing API to conform with the behavior of ``.ix`` see :ref:`here <whatsnew_0160.api_breaking.indexing>`
16+
1217
- Check the :ref:`API Changes <whatsnew_0160.api>` and :ref:`deprecations <whatsnew_0160.deprecations>` before updating
1318

1419
- :ref:`Other Enhancements <whatsnew_0160.enhancements>`
@@ -31,6 +36,7 @@ New features
3136

3237
This method is also exposed by the lower level ``Index.get_indexer`` and ``Index.get_loc`` methods.
3338

39+
- Allow Stata files to be read incrementally with an iterator; support for long strings in Stata files. See the docs :ref:`here<io.stata_reader>`. (issue:`9493`:)
3440
- Paths beginning with ~ will now be expanded to begin with the user's home directory (:issue:`9066`)
3541
- Added time interval selection in ``get_data_yahoo`` (:issue:`9071`)
3642
- Added ``Series.str.slice_replace()``, which previously raised ``NotImplementedError`` (:issue:`8888`)

0 commit comments

Comments
 (0)