Skip to content

Commit ed9f522

Browse files
committed
DOC: release notes
1 parent 3c2f56a commit ed9f522

File tree

1 file changed

+21
-11
lines changed

1 file changed

+21
-11
lines changed

RELEASE.rst

+21-11
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,19 @@ pandas 0.11.0
3636
- Add function to pandas.io.data for retrieving stock index components from
3737
Yahoo! finance (GH2795_)
3838
- Support slicing with time objects (GH2681_)
39-
- Added ``.iloc`` attribute, to support strict integer based indexing, analagous to ``.ix`` (GH2922_)
40-
- Added ``.loc`` attribute, to support strict label based indexing, analagous to ``.ix`` (GH3053_)
41-
- Added ``.iat`` attribute, to support fast scalar access via integers (replaces ``iget_value/iset_value``)
42-
- Added ``.at`` attribute, to support fast scalar access via labels (replaces ``get_value/set_value``)
39+
- Added ``.iloc`` attribute, to support strict integer based indexing,
40+
analogous to ``.ix`` (GH2922_)
41+
- Added ``.loc`` attribute, to support strict label based indexing, analagous
42+
to ``.ix`` (GH3053_)
43+
- Added ``.iat`` attribute, to support fast scalar access via integers
44+
(replaces ``iget_value/iset_value``)
45+
- Added ``.at`` attribute, to support fast scalar access via labels (replaces
46+
``get_value/set_value``)
4347
- Moved functionaility from ``irow,icol,iget_value/iset_value`` to ``.iloc`` indexer
4448
(via ``_ixs`` methods in each object)
4549
- Added support for expression evaluation using the ``numexpr`` library
46-
- Added ``convert=boolean`` to ``take`` routines to translate negative indices to positive,
47-
defaults to True
50+
- Added ``convert=boolean`` to ``take`` routines to translate negative
51+
indices to positive, defaults to True
4852

4953
**Improvements to existing features**
5054

@@ -64,15 +68,18 @@ pandas 0.11.0
6468
strings that can be parsed with datetime.strptime
6569
- Add ``axes`` property to ``Series`` for compatibility
6670
- Add ``xs`` function to ``Series`` for compatibility
67-
- Allow setitem in a frame where only mixed numerics are present (e.g. int and float), (GH3037_)
71+
- Allow setitem in a frame where only mixed numerics are present (e.g. int
72+
and float), (GH3037_)
6873
- ``HDFStore``
6974

7075
- Provide dotted attribute access to ``get`` from stores
7176
(e.g. store.df == store['df'])
72-
- New keywords ``iterator=boolean``, and ``chunksize=number_in_a_chunk`` are
73-
provided to support iteration on ``select`` and ``select_as_multiple`` (GH3076_)
77+
- New keywords ``iterator=boolean``, and ``chunksize=number_in_a_chunk``
78+
are provided to support iteration on ``select`` and
79+
``select_as_multiple`` (GH3076_)
7480

75-
- Add ``squeeze`` method to possibly remove length 1 dimensions from an object.
81+
- Add ``squeeze`` method to possibly remove length 1 dimensions from an
82+
object.
7683

7784
.. ipython:: python
7885
@@ -168,7 +175,8 @@ pandas 0.11.0
168175
- Internally, change all variables to be private-like (now have leading
169176
underscore)
170177
- Fixes for query parsing to correctly interpret boolean and != (GH2849_, GH2973_)
171-
- Fixes for pathological case on SparseSeries with 0-len array and compression (GH2931_)
178+
- Fixes for pathological case on SparseSeries with 0-len array and
179+
compression (GH2931_)
172180
- Fixes bug with writing rows if part of a block was all-nan (GH3012_)
173181
- Exceptions are now ValueError or TypeError as needed
174182
- A table will now raise if min_itemsize contains fields which are not queryables
@@ -231,6 +239,7 @@ pandas 0.11.0
231239
- PeriodIndex.tolist now boxes to Period (GH3178_)
232240
- PeriodIndex.get_loc KeyError now reports Period instead of ordinal (GH3179_)
233241
- df.to_records bug when handling MultiIndex (GH3189)
242+
- Fix Series.__getitem__ segfault when index less than -length (GH3168_)
234243

235244
.. _GH622: https://github.com/pydata/pandas/issues/622
236245
.. _GH797: https://github.com/pydata/pandas/issues/797
@@ -304,6 +313,7 @@ pandas 0.11.0
304313
.. _GH3075: https://github.com/pydata/pandas/issues/3075
305314
.. _GH3094: https://github.com/pydata/pandas/issues/3094
306315
.. _GH3130: https://github.com/pydata/pandas/issues/3130
316+
.. _GH3168: https://github.com/pydata/pandas/issues/3168
307317
.. _GH3178: https://github.com/pydata/pandas/issues/3178
308318
.. _GH3179: https://github.com/pydata/pandas/issues/3179
309319
.. _GH3189: https://github.com/pydata/pandas/issues/3189

0 commit comments

Comments
 (0)