Skip to content

Commit 1a4f041

Browse files
author
Chang She
committed
DOC: add release notes to whatsnew
1 parent 731c8f1 commit 1a4f041

File tree

2 files changed

+30
-14
lines changed

2 files changed

+30
-14
lines changed

doc/source/v0.9.0.txt

+28-14
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,34 @@
1-
.. _whatsnew_090:
1+
.. _whatsnew_0900:
22

33
v0.9.0 (September 25, 2012)
4-
------------------------
4+
---------------------------
55

66
This is a major release from 0.8.1 and includes several new features and
77
enhancements along with a large number of bug fixes. New features include
88
vectorized unicode encoding/decoding for `Series.str`, `to_latex` method to
9-
DataFrame, more flexible parsing of boolean values, and enabling downloading
9+
DataFrame, more flexible parsing of boolean values, and enabling the download of
1010
options data from Yahoo! Finance.
1111

1212
New features
1313
~~~~~~~~~~~~
1414

15-
- Add ``str.encode`` and ``str.decode`` for unicode handling to
16-
:ref:`vectorized string processing methods <basics.string_methods>`
17-
in Series (GH1706_)
18-
- Add `DataFrame.to_latex` method (GH1735_)
15+
- Add ``encode`` and ``decode`` for unicode handling to :ref:`vectorized
16+
string processing methods <basics.string_methods>` in Series.str (GH1706_)
17+
- Add ``DataFrame.to_latex`` method (GH1735_)
1918
- Add convenient expanding window equivalents of all rolling_* ops (GH1785_)
2019
- Add Options class to pandas.io.data for fetching options data from Yahoo!
2120
Finance (GH1748_, GH1739_)
22-
- More flexible text parsing of boolean values (Yes, No, TRUE,
23-
FALSE, and variants thereof) (GH1691_, GH1295_)
21+
- More flexible parsing of boolean values (Yes, No, TRUE, FALSE, etc)
22+
(GH1691_, GH1295_)
2423

2524
API changes
2625
~~~~~~~~~~~
2726

2827
- Deprecated ``day_of_year`` API removed from PeriodIndex, use ``dayofyear``
2928
(GH1723_)
3029
- Don't modify NumPy suppress printoption at import time
31-
- The internal HDF5 data arrangement for DataFrames has been
32-
transposed. Legacy files will still be readable by HDFStore
33-
(GH1834_, GH1824_)
30+
- The internal HDF5 data arrangement for DataFrames has been transposed.
31+
Legacy files will still be readable by HDFStore (GH1834_, GH1824_)
3432
- Legacy cruft removed: pandas.stats.misc.quantileTS
3533
- Use ISO8601 format for Period repr: monthly, daily, and on down (GH1776_)
3634
- Empty DataFrame columns are now created as object dtype. This will prevent
@@ -39,8 +37,8 @@ API changes
3937
results) (GH1783_)
4038
- Setting parts of DataFrame/Panel using ix now aligns input Series/DataFrame
4139
(GH1630_)
42-
- `first` and `last` methods in `GroupBy` no longer drop non-numeric columns
43-
(GH1809_)
40+
- ``first`` and ``last`` methods in ``GroupBy`` no longer drop non-numeric
41+
columns (GH1809_)
4442
- Resolved inconsistencies in specifying custom NA values in text parser.
4543
`na_values` of type dict no longer override default NAs unless
4644
`keep_default_na` is set to false explicitly (GH1657_)
@@ -49,3 +47,19 @@ API changes
4947
See the `full release notes
5048
<https://github.com/pydata/pandas/blob/master/RELEASE.rst>`__ or issue tracker
5149
on GitHub for a complete list.
50+
51+
.. _GH1706: https://github.com/pydata/pandas/issues/1706
52+
.. _GH1735: https://github.com/pydata/pandas/issues/1735
53+
.. _GH1785: https://github.com/pydata/pandas/issues/1785
54+
.. _GH1748: https://github.com/pydata/pandas/issues/1748
55+
.. _GH1739: https://github.com/pydata/pandas/issues/1739
56+
.. _GH1691: https://github.com/pydata/pandas/issues/1691
57+
.. _GH1295: https://github.com/pydata/pandas/issues/1295
58+
.. _GH1723: https://github.com/pydata/pandas/issues/1723
59+
.. _GH1834: https://github.com/pydata/pandas/issues/1834
60+
.. _GH1824: https://github.com/pydata/pandas/issues/1824
61+
.. _GH1776: https://github.com/pydata/pandas/issues/1776
62+
.. _GH1783: https://github.com/pydata/pandas/issues/1783
63+
.. _GH1630: https://github.com/pydata/pandas/issues/1630
64+
.. _GH1809: https://github.com/pydata/pandas/issues/1809
65+
.. _GH1657: https://github.com/pydata/pandas/issues/1657

doc/source/whatsnew.rst

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ What's New
1616

1717
These are new features and improvements of note in each release.
1818

19+
.. include:: v0.9.0.txt
20+
1921
.. include:: v0.8.1.txt
2022

2123
.. include:: v0.8.0.txt

0 commit comments

Comments
 (0)