Skip to content

Commit 4ed5d0d

Browse files
author
y-p
committed
DOC: RELEASE.rst is a full changelog, v0.x.y.txt is what's new/changed
1 parent 024fb36 commit 4ed5d0d

File tree

2 files changed

+18
-58
lines changed

2 files changed

+18
-58
lines changed

RELEASE.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pandas 0.11.0
4141
- Added ``.loc`` attribute, to support strict label based indexing, analagous to ``.ix`` (GH3053_)
4242
- Added ``.iat`` attribute, to support fast scalar access via integers (replaces ``iget_value/iset_value``)
4343
- Added ``.at`` attribute, to support fast scalar access via labels (replaces ``get_value/set_value``)
44-
- Moved functionaility from ``irow,icol,iget_value/iset_value`` to ``.iloc`` indexer
44+
- Moved functionaility from ``irow,icol,iget_value/iset_value`` to ``.iloc`` indexer
4545
(via ``_ixs`` methods in each object)
4646
- Added support for expression evaluation using the ``numexpr`` library
4747

@@ -154,7 +154,7 @@ pandas 0.11.0
154154
- TimeDeltas
155155

156156
- Series ops with a Timestamp on the rhs was throwing an exception (GH2898_)
157-
added tests for Series ops with datetimes,timedeltas,Timestamps, and datelike
157+
added tests for Series ops with datetimes,timedeltas,Timestamps, and datelike
158158
Series on both lhs and rhs
159159
- Fixed subtle timedelta64 inference issue on py3
160160
- Fixed some formatting issues on timedelta when negative
@@ -169,14 +169,14 @@ pandas 0.11.0
169169
- Bug in value_counts of ``datetime64[ns]`` Series (GH3002_)
170170
- Fixed printing of ``NaT` in an index
171171
- Bug in idxmin/idxmax of ``datetime64[ns]`` Series with ``NaT`` (GH2982__)
172-
- Bug in ``icol, take`` with negative indicies was producing incorrect return
172+
- Bug in ``icol, take`` with negative indicies was producing incorrect return
173173
values (see GH2922_, GH2892_), also check for out-of-bounds indices (GH3029_)
174174
- Bug in DataFrame column insertion when the column creation fails, existing frame is left in
175175
an irrecoverable state (GH3010_)
176-
- Bug in DataFrame update, combine_first where non-specified values could cause
176+
- Bug in DataFrame update, combine_first where non-specified values could cause
177177
dtype changes (GH3016_, GH3041_)
178178
- Bug in groupby with first/last where dtypes could change (GH3041_)
179-
- Formatting of an index that has ``nan`` was inconsistent or wrong (would fill from
179+
- Formatting of an index that has ``nan`` was inconsistent or wrong (would fill from
180180
other values), (GH2850_)
181181
- Unstack of a frame with no nans would always cause dtype upcasting (GH2929_)
182182
- Fix scalar datetime.datetime parsing bug in read_csv (GH3071_)

doc/source/v0.11.0.txt

+13-53
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ v0.11.0 (March ??, 2013)
66
This is a major release from 0.10.1 and includes many new features and
77
enhancements along with a large number of bug fixes. The methods of Selecting
88
Data have had quite a number of additions, and Dtype support is now full-fledged.
9-
There are also a number of important API changes that long-time pandas users should
9+
There are also a number of important API changes that long-time pandas users should
1010
pay close attention to.
1111

1212
There is a new section in the documentation, :ref:`10 Minutes to Pandas <10min>`,
@@ -38,25 +38,25 @@ three types of multi-axis indexing.
3838

3939
See more at :ref:`Selection by Label <indexing.label>`
4040

41-
- ``.iloc`` is strictly integer position based (from 0 to length-1 of the axis), will
41+
- ``.iloc`` is strictly integer position based (from 0 to length-1 of the axis), will
4242
raise ``IndexError`` when the requested indicies are out of bounds. Allowed inputs are:
4343

4444
- An integer e.g. ``5``
4545
- A list or array of integers ``[4, 3, 0]``
4646
- A slice object with ints ``1:7``
4747
- A boolean array
4848

49-
See more at :ref:`Selection by Position <indexing.integer>`
49+
See more at :ref:`Selection by Position <indexing.integer>`
5050

5151
- ``.ix`` supports mixed integer and label based access. It is primarily label based, but
52-
will fallback to integer positional access. ``.ix`` is the most general and will support
52+
will fallback to integer positional access. ``.ix`` is the most general and will support
5353
any of the inputs to ``.loc`` and ``.iloc``, as well as support for floating point label schemes.
5454

55-
As using integer slices with ``.ix`` have different behavior depending on whether the slice
56-
is interpreted as integer location based or label position based, it's usually better to be
55+
As using integer slices with ``.ix`` have different behavior depending on whether the slice
56+
is interpreted as integer location based or label position based, it's usually better to be
5757
explicit and use ``.iloc`` (integer location) or ``.loc`` (label location).
5858

59-
``.ix`` is especially usefull when dealing with mixed positional/label based hierarchial indexes.
59+
``.ix`` is especially usefull when dealing with mixed positional/label based hierarchial indexes.
6060

6161
See more at :ref:`Advanced Indexing <indexing.advanced>` and :ref:`Advanced Hierarchical <indexing.advanced_hierarchical>`
6262

@@ -92,8 +92,8 @@ Numeric dtypes will propagate and can coexist in DataFrames. If a dtype is passe
9292
df1 = DataFrame(randn(8, 1), columns = ['A'], dtype = 'float32')
9393
df1
9494
df1.dtypes
95-
df2 = DataFrame(dict( A = Series(randn(8),dtype='float16'),
96-
B = Series(randn(8)),
95+
df2 = DataFrame(dict( A = Series(randn(8),dtype='float16'),
96+
B = Series(randn(8)),
9797
C = Series(randn(8),dtype='uint8') ))
9898
df2
9999
df2.dtypes
@@ -266,10 +266,10 @@ Enhancements
266266
``above_below``. This allows the user to specify if they would like to
267267
only return forward looking data for options near the current stock
268268
price. This just obtains the data from Options.get_near_stock_price
269-
instead of Options.get_xxx_data().
269+
instead of Options.get_xxx_data(). (GH2758_)
270270

271271
- added option `display.max_seq_items` to control the number of
272-
elements printed per sequence pprinting it.
272+
elements printed per sequence pprinting it. (GH2979_)
273273

274274
- added option `display.chop_threshold` to control display of small numerical
275275
values. (GH2739_)
@@ -284,48 +284,6 @@ Enhancements
284284
the collections.Mapping ABC.
285285

286286

287-
288-
Bug Fixes
289-
~~~~~~~~~
290-
291-
- Timedeltas are now fully operational (closes GH2898_)
292-
293-
.. ipython:: python
294-
295-
from datetime import datetime, timedelta
296-
s = Series(date_range('2012-1-1', periods=3, freq='D'))
297-
td = Series([ timedelta(days=i) for i in range(3) ])
298-
df = DataFrame(dict(A = s, B = td))
299-
df
300-
s - s.max()
301-
df['C'] = df['A'] + df['B']
302-
df
303-
df.dtypes
304-
305-
# timedelta are representas as ``NaT``
306-
y = s - s.shift()
307-
y
308-
309-
# can be set via ``np.nan``
310-
y[1] = np.nan
311-
y
312-
313-
# works on lhs too
314-
s.max() - s
315-
316-
# some timedelta numeric operations are supported
317-
td - timedelta(minutes=5,seconds=5,microseconds=5)
318-
319-
- Fixed slow printing of large Dataframes, due to inefficient dtype
320-
reporting (GH2807_)
321-
- Fixed a segfault when using a function as grouper in groupby (GH3035_)
322-
- Fix pretty-printing of infinite data structures (closes GH2978_)
323-
- Fixed exception when plotting timeseries bearing a timezone (closes GH2877_)
324-
- str.contains ignored na argument (GH2806_)
325-
- Substitute warning for segfault when grouping with categorical grouper
326-
of mismatched length (GH3011_)
327-
328-
329287
See the `full release notes
330288
<https://github.com/pydata/pandas/blob/master/RELEASE.rst>`__ or issue tracker
331289
on GitHub for a complete list.
@@ -343,3 +301,5 @@ on GitHub for a complete list.
343301
.. _GH2807: https://github.com/pydata/pandas/issues/2807
344302
.. _GH2918: https://github.com/pydata/pandas/issues/2918
345303
.. _GH3011: https://github.com/pydata/pandas/issues/3011
304+
.. _GH2979: https://github.com/pydata/pandas/issues/2979
305+
.. _GH2758: https://github.com/pydata/pandas/issues/2758

0 commit comments

Comments
 (0)