Skip to content

Commit cda9da8

Browse files
committed
DOC: update release.rst / whatsnew edits
1 parent 80a2d53 commit cda9da8

File tree

2 files changed

+69
-13
lines changed

2 files changed

+69
-13
lines changed

doc/source/release.rst

+62
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,68 @@ of all enhancements and bugs that have been fixed in 0.17.1.
5757
Thanks
5858
~~~~~~
5959

60+
- Aleksandr Drozd
61+
- Alex Chase
62+
- Anthonios Partheniou
63+
- BrenBarn
64+
- Brian J. McGuirk
65+
- Chris
66+
- Christian Berendt
67+
- Christian Perez
68+
- Cody Piersall
69+
- Data & Code Expert Experimenting with Code on Data
70+
- DrIrv
71+
- Evan Wright
72+
- Guillaume Gay
73+
- Hamed Saljooghinejad
74+
- Iblis Lin
75+
- Jake VanderPlas
76+
- Jan Schulz
77+
- Jean-Mathieu Deschenes
78+
- Jeff Reback
79+
- Jimmy Callin
80+
- Joris Van den Bossche
81+
- K.-Michael Aye
82+
- Ka Wo Chen
83+
- Loïc Séguin-C
84+
- Luo Yicheng
85+
- Magnus Jöud
86+
- Manuel Leonhardt
87+
- Matthew Gilbert
88+
- Maximilian Roos
89+
- Michael
90+
- Nicholas Stahl
91+
- Nicolas Bonnotte
92+
- Pastafarianist
93+
- Petra Chong
94+
- Phil Schaf
95+
- Philipp A
96+
- Rob deCarvalho
97+
- Roman Khomenko
98+
- Rémy Léone
99+
- Sebastian Bank
100+
- Thierry Moisan
101+
- Tom Augspurger
102+
- Tux1
103+
- Varun
104+
- Wieland Hoffmann
105+
- Winterflower
106+
- Yoav Ram
107+
- Younggun Kim
108+
- Zeke
109+
- ajcr
110+
- azuranski
111+
- behzad nouri
112+
- cel4
113+
- emilydolson
114+
- hironow
115+
- lexual
116+
- llllllllll
117+
- rockg
118+
- silentquasar
119+
- sinhrks
120+
- taeold
121+
60122
pandas 0.17.0
61123
-------------
62124

doc/source/whatsnew/v0.17.1.txt

+7-13
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ v0.17.1 (November 21, 2015)
55

66
.. note::
77

8-
We are proud to announce that *pandas* has become a sponsored project of the not-for-profit `NUMFocus organization`_. This will help ensure the success of development of *pandas* as a world-class open-source project.
8+
We are proud to announce that *pandas* has become a sponsored project of the (`NUMFocus organization`_). This will help ensure the success of development of *pandas* as a world-class open-source project.
99

1010
:: _numfocus organization: http://numfocus.org/news/2015/10/09/numfocus-announces-new-fiscally-sponsored-project-pandas/
1111

@@ -50,22 +50,21 @@ We can render the HTML to get the following table.
5050
.. raw:: html
5151
:file: whatsnew_0171_html_table.html
5252

53-
See the :ref:`example notebook <style>` for more.
53+
See the :ref:`documentation <style>` for more.
5454

5555
.. _whatsnew_0171.enhancements:
5656

5757
Enhancements
5858
~~~~~~~~~~~~
59-
- ``DatetimeIndex`` now supports conversion to strings with ``astype(str)`` (:issue:`10442`)
6059

60+
- ``DatetimeIndex`` now supports conversion to strings with ``astype(str)`` (:issue:`10442`)
6161
- Support for ``compression`` (gzip/bz2) in :meth:`pandas.DataFrame.to_csv` (:issue:`7615`)
6262
- Improve the error message in :func:`pandas.io.gbq.to_gbq` when a streaming insert fails (:issue:`11285`)
6363
- ``pd.read_*`` functions can now also accept :class:`python:pathlib.Path`, or :class:`py:py._path.local.LocalPath`
6464
objects for the ``filepath_or_buffer`` argument. (:issue:`11033`)
6565
- ``DataFrame`` now uses the fields of a ``namedtuple`` as columns, if columns are not supplied (:issue:`11181`)
6666
- 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`)
6767
- Added ``axvlines_kwds`` to parallel coordinates plot (:issue:`10709`)
68-
6968
- 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`)
7069

7170
.. ipython:: python
@@ -85,7 +84,7 @@ Enhancements
8584

8685
pd.Index([1, np.nan, 3]).fillna(2)
8786

88-
- Series of type ``"category"`` now make ``.str.<...>`` and ``.dt.<...>`` accessor methods / properties available, if the categories are of that type. (:issue:`10661`)
87+
- Series of type ``category`` now make ``.str.<...>`` and ``.dt.<...>`` accessor methods / properties available, if the categories are of that type. (:issue:`10661`)
8988

9089
.. ipython:: python
9190

@@ -105,6 +104,7 @@ Enhancements
105104

106105
API changes
107106
~~~~~~~~~~~
107+
108108
- raise ``NotImplementedError`` in ``Index.shift`` for non-supported index types (:issue:`8083`)
109109
- min and max reductions on ``datetime64`` and ``timedelta64`` dtyped series now
110110
result in ``NaT`` and not ``nan`` (:issue:`11245`).
@@ -114,7 +114,6 @@ API changes
114114
- Indexing with a null key will raise a ``TypeError``, instead of a ``ValueError`` (:issue:`11356`)
115115
- ``Series.sort_index()`` now correctly handles the ``inplace`` option (:issue:`11402`)
116116
- ``SparseArray.__iter__()`` now does not cause ``PendingDeprecationWarning`` in Python 3.5 (:issue:`11622`)
117-
118117
- ``DataFrame.itertuples()`` now returns ``namedtuple`` objects, when possible. (:issue:`11269`, :issue:`11625`)
119118
- ``Series.ptp`` will now ignore missing values by default (:issue:`11163`)
120119

@@ -126,7 +125,6 @@ Deprecations
126125
- The ``pandas.io.ga`` module which implements ``google-analytics`` support is deprecated and will be removed in a future version (:issue:`11308`)
127126
- Deprecate the ``engine`` keyword in ``.to_csv()``, which will be removed in a future version (:issue:`11274`)
128127

129-
130128
.. _whatsnew_0171.performance:
131129

132130
Performance Improvements
@@ -135,19 +133,17 @@ Performance Improvements
135133
- Checking monotonic-ness before sorting on an index (:issue:`11080`)
136134
- ``Series.dropna`` performance improvement when its dtype can't contain ``NaN`` (:issue:`11159`)
137135
- 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`)
138-
- Release the GIL on some rolling algos (``rolling_median``, ``rolling_mean``, ``rolling_max``, ``rolling_min``, ``rolling_var``, ``rolling_kurt``, ``rolling_skew`` (:issue:`11450`)
136+
- Release the GIL on some rolling algos: ``rolling_median``, ``rolling_mean``, ``rolling_max``, ``rolling_min``, ``rolling_var``, ``rolling_kurt``, ``rolling_skew`` (:issue:`11450`)
139137
- Release the GIL when reading and parsing text files in ``read_csv``, ``read_table`` (:issue:`11272`)
140138
- Improved performance of ``rolling_median`` (:issue:`11450`)
141-
- Improved performance to ``to_excel`` (:issue:`11352`)
139+
- Improved performance of ``to_excel`` (:issue:`11352`)
142140
- Performance bug in repr of ``Categorical`` categories, which was rendering the strings before chopping them for display (:issue:`11305`)
143141
- Performance improvement in ``Categorical.remove_unused_categories``, (:issue:`11643`).
144142
- Improved performance of ``Series`` constructor with no data and ``DatetimeIndex`` (:issue:`11433`)
145-
146143
- Improved performance of ``shift``, ``cumprod``, and ``cumsum`` with groupby (:issue:`4095`)
147144

148145
.. _whatsnew_0171.bug_fixes:
149146

150-
151147
Bug Fixes
152148
~~~~~~~~~
153149

@@ -191,11 +187,9 @@ Bug Fixes
191187
- Bug in the link-time error caused by C ``inline`` functions on FreeBSD 10+ (with ``clang``) (:issue:`10510`)
192188
- Bug in ``DataFrame.to_csv`` in passing through arguments for formatting ``MultiIndexes``, including ``date_format`` (:issue:`7791`)
193189
- Bug in ``DataFrame.join()`` with ``how='right'`` producing a ``TypeError`` (:issue:`11519`)
194-
195190
- Bug in ``Series.quantile`` with empty list results has ``Index`` with ``object`` dtype (:issue:`11588`)
196191
- Bug in ``pd.merge`` results in empty ``Int64Index`` rather than ``Index(dtype=object)`` when the merge result is empty (:issue:`11588`)
197192
- Bug in ``Categorical.remove_unused_categories`` when having ``NaN`` values (:issue:`11599`)
198193
- Bug in ``DataFrame.to_sparse()`` loses column names for MultiIndexes (:issue:`11600`)
199-
200194
- Bug in ``DataFrame.round()`` with non-unique column index producing a Fatal Python error (:issue:`11611`)
201195
- Bug in ``DataFrame.round()`` with ``decimals`` being a non-unique indexed Series producing extra columns (:issue:`11618`)

0 commit comments

Comments
 (0)