Skip to content

Commit 35b159d

Browse files
committed
DOC: whatsnew edits
1 parent 67b1355 commit 35b159d

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

doc/source/release.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,16 @@ analysis / manipulation tool available in any language.
4040
pandas 0.17.1
4141
-------------
4242

43-
**Release date:** (November ??, 2015)
43+
**Release date:** (November 21, 2015)
4444

4545
This is a minor release from 0.17.0 and includes a large number of bug fixes
4646
along with several new features, enhancements, and performance improvements.
4747

4848
Highlights include:
4949

50+
- Bug in ``DataFrame.drop_duplicates`` was a regression from 0.16.2, causing incorrect results on integer values (:issue:`11376`)
51+
- Releasing the GIL on the csv reader & other ops, see :ref:`here <whatsnew_0171.performance>`
52+
5053
See the :ref:`v0.17.1 Whatsnew <whatsnew_0171>` overview for an extensive list
5154
of all enhancements and bugs that have been fixed in 0.17.1.
5255

doc/source/whatsnew/v0.17.1.txt

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
.. _whatsnew_0171:
22

3-
v0.17.1 (November ??, 2015)
3+
v0.17.1 (November 21, 2015)
44
---------------------------
55

66
This is a minor bug-fix release from 0.17.0 and includes a large number of
77
bug fixes along several new features, enhancements, and performance improvements.
88
We recommend that all users upgrade to this version.
99

1010
Highlights include:
11+
- Bug in ``DataFrame.drop_duplicates`` was a regression from 0.16.2, causing incorrect results on integer values (:issue:`11376`)
12+
- Releasing the GIL on the csv reader & other ops, see :ref:`here <whatsnew_0171.performance>`
1113

1214
.. contents:: What's new in v0.17.1
1315
:local:
@@ -27,7 +29,7 @@ Enhancements
2729
- Improve the error message displayed in :func:`pandas.io.gbq.to_gbq` when the DataFrame does not match the schema of the destination table (:issue:`11359`)
2830
- Added ``axvlines_kwds`` to parallel coordinates plot (:issue:`10709`)
2931

30-
- Option to ``.info()`` and ``.memory_usage()`` to provide for deep introspection of memory consumption. Note that this can be expensive to compute and therefore is an optional parameter. (:issue:``11595``)
32+
- Option to ``.info()`` and ``.memory_usage()`` to provide for deep introspection of memory consumption. Note that this can be expensive to compute and therefore is an optional parameter. (:issue:`11595`)
3133

3234
.. ipython:: python
3335

@@ -83,7 +85,7 @@ Performance Improvements
8385

8486

8587
- Release the GIL on most datetime field operations (e.g. ``DatetimeIndex.year``, ``Series.dt.year``), normalization, and conversion to and from ``Period``, ``DatetimeIndex.to_period`` and ``PeriodIndex.to_timestamp`` (:issue:`11263`)
86-
- Release the GIL on some srolling algos (``rolling_median``, ``rolling_mean``, ``rolling_max``, ``rolling_min``, ``rolling_var``, ``rolling_kurt``, ``rolling_skew`` (:issue:`11450`)
88+
- Release the GIL on some rolling algos (``rolling_median``, ``rolling_mean``, ``rolling_max``, ``rolling_min``, ``rolling_var``, ``rolling_kurt``, ``rolling_skew`` (:issue:`11450`)
8789
- Release the GIL when reading and parsing text files in ``read_csv``, ``read_table`` (:issue:`11272`)
8890
- Improved performance of ``rolling_median`` (:issue:`11450`)
8991

@@ -119,7 +121,7 @@ Bug Fixes
119121
- Bug in ``pivot_table`` with ``margins=True`` when indexes are of ``Categorical`` dtype (:issue:`10993`)
120122
- Bug in ``DataFrame.plot`` cannot use hex strings colors (:issue:`10299`)
121123

122-
- Bug in ``DataFrame.drop_duplicates`` (regression from 0.16.2) causing some non-duplicate rows containing integer values to be dropped (:issue:`11376`)
124+
- Bug in ``DataFrame.drop_duplicates`` was a regression from 0.16.2, causing incorrect results on integer values (:issue:`11376`)
123125

124126

125127
- Bug in ``pd.eval`` where unary ops in a list error (:issue:`11235`)

0 commit comments

Comments
 (0)