Skip to content

Commit 024fb36

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

File tree

1 file changed

+57
-5
lines changed

1 file changed

+57
-5
lines changed

RELEASE.rst

Lines changed: 57 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,37 @@ pandas 0.11.0
6060
- ``describe_option()`` now reports the default and current value of options.
6161
- Add ``format`` option to ``pandas.to_datetime`` with faster conversion of
6262
strings that can be parsed with datetime.strptime
63-
- Add ``axes`` property to ``Series`` for compatibility
64-
- Add ``xs`` function to ``Series`` for compatibility
63+
- Add ``axes`` property to ``Series`` for compatibility
64+
- Add ``xs`` function to ``Series`` for compatibility
6565
- Allow setitem in a frame where only mixed numerics are present (e.g. int and float), (GH3037_)
6666

67+
- In ``HDFStore``, provide dotted attribute access to ``get`` from stores
68+
(e.g. ``store.df == store['df']``)
69+
70+
- ``Squeeze`` to possibly remove length 1 dimensions from an object.
71+
72+
.. ipython:: python
73+
74+
p = Panel(randn(3,4,4),items=['ItemA','ItemB','ItemC'],
75+
major_axis=date_range('20010102',periods=4),
76+
minor_axis=['A','B','C','D'])
77+
p
78+
p.reindex(items=['ItemA']).squeeze()
79+
p.reindex(items=['ItemA'],minor=['B']).squeeze()
80+
81+
- Improvement to Yahoo API access in ``pd.io.data.Options`` (GH2758_)
82+
- added option `display.max_seq_items` to control the number of
83+
elements printed per sequence pprinting it. (GH2979_)
84+
- added option `display.chop_threshold` to control display of small numerical
85+
values. (GH2739_)
86+
- added option `display.max_info_rows` to prevent verbose_info from being
87+
calculated for frames above 1M rows (configurable). (GH2807_, GH2918_)
88+
- value_counts() now accepts a "normalize" argument, for normalized
89+
histograms. (GH2710_).
90+
- DataFrame.from_records now accepts not only dicts but any instance of
91+
the collections.Mapping ABC.
92+
93+
6794
**API Changes**
6895

6996
- Do not automatically upcast numeric specified dtypes to ``int64`` or
@@ -107,7 +134,6 @@ pandas 0.11.0
107134
(GH2776_)
108135
- Fix issues with DataFrame and Series constructor with integers that
109136
overflow ``int64`` and some mixed typed type lists (GH2845_)
110-
- Fix issue with slow printing of wide frames resulting (GH2807_)
111137

112138
- ``HDFStore``
113139

@@ -137,7 +163,8 @@ pandas 0.11.0
137163
- Support min/max ops in a Dataframe (abs not working, nor do we error on non-supported ops)
138164
- Support idxmin/idxmax/abs/max/min in a Series (GH2989_, GH2982_)
139165

140-
- Bug on in-place putmasking on an ``integer`` series that needs to be converted to ``float`` (GH2746_)
166+
- Bug on in-place putmasking on an ``integer`` series that needs to be converted to
167+
``float`` (GH2746_)
141168
- Bug in argsort of ``datetime64[ns]`` Series with ``NaT`` (GH2967_)
142169
- Bug in value_counts of ``datetime64[ns]`` Series (GH3002_)
143170
- Fixed printing of ``NaT` in an index
@@ -153,7 +180,31 @@ pandas 0.11.0
153180
other values), (GH2850_)
154181
- Unstack of a frame with no nans would always cause dtype upcasting (GH2929_)
155182
- Fix scalar datetime.datetime parsing bug in read_csv (GH3071_)
156-
183+
- Timedeltas are now fully operational (closes GH2898_)
184+
- Fixed slow printing of large Dataframes, due to inefficient dtype
185+
reporting (GH2807_)
186+
- Fixed a segfault when using a function as grouper in groupby (GH3035_)
187+
- Fix pretty-printing of infinite data structures (closes GH2978_)
188+
- Fixed exception when plotting timeseries bearing a timezone (closes GH2877_)
189+
- str.contains ignored na argument (GH2806_)
190+
- Substitute warning for segfault when grouping with categorical grouper
191+
of mismatched length (GH3011_)
192+
- Fix exception in SparseSeries.density (GH2083_)
193+
194+
.. _GH2758: https://github.com/pydata/pandas/issues/2758
195+
.. _GH2809: https://github.com/pydata/pandas/issues/2809
196+
.. _GH2810: https://github.com/pydata/pandas/issues/2810
197+
.. _GH2837: https://github.com/pydata/pandas/issues/2837
198+
.. _GH2898: https://github.com/pydata/pandas/issues/2898
199+
.. _GH3035: https://github.com/pydata/pandas/issues/3035
200+
.. _GH2978: https://github.com/pydata/pandas/issues/2978
201+
.. _GH2877: https://github.com/pydata/pandas/issues/2877
202+
.. _GH2739: https://github.com/pydata/pandas/issues/2739
203+
.. _GH2710: https://github.com/pydata/pandas/issues/2710
204+
.. _GH2806: https://github.com/pydata/pandas/issues/2806
205+
.. _GH2807: https://github.com/pydata/pandas/issues/2807
206+
.. _GH2918: https://github.com/pydata/pandas/issues/2918
207+
.. _GH3011: https://github.com/pydata/pandas/issues/3011
157208
.. _GH622: https://github.com/pydata/pandas/issues/622
158209
.. _GH797: https://github.com/pydata/pandas/issues/797
159210
.. _GH2681: https://github.com/pydata/pandas/issues/2681
@@ -187,6 +238,7 @@ pandas 0.11.0
187238
.. _GH3037: https://github.com/pydata/pandas/issues/3037
188239
.. _GH3041: https://github.com/pydata/pandas/issues/3041
189240
.. _GH3053: https://github.com/pydata/pandas/issues/3053
241+
.. _GH2803: https://github.com/pydata/pandas/issues/2803
190242

191243

192244
pandas 0.10.1

0 commit comments

Comments
 (0)