Skip to content

Commit b4314f4

Browse files
committed
DOC: missed a few for release notes 0.9
1 parent 05f4477 commit b4314f4

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

RELEASE.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ pandas 0.9.0
5959
repeat levels) (#1929)
6060
- TimeSeries.between_time can now select times across midnight (#1871)
6161
- Enable `skip_footer` parameter in `ExcelFile.parse` (#1843)
62-
- Enable `skipfooter` parameter in text parsers as an alias for `skip_footer`
6362

6463
**API Changes**
6564

@@ -81,6 +80,7 @@ pandas 0.9.0
8180
- Resolved inconsistencies in specifying custom NA values in text parser.
8281
`na_values` of type dict no longer override default NAs unless
8382
`keep_default_na` is set to false explicitly (#1657)
83+
- Enable `skipfooter` parameter in text parsers as an alias for `skip_footer`
8484

8585
**Bug fixes**
8686

doc/source/v0.9.0.txt

+12
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ New features
2121
- More flexible parsing of boolean values (Yes, No, TRUE, FALSE, etc)
2222
(GH1691_, GH1295_)
2323
- Add ``level`` parameter to ``Series.reset_index``
24+
- ``TimeSeries.between_time`` can now select times across midnight (GH1871_)
25+
- Series constructor can now handle generator as input (GH1679_)
26+
- ``DataFrame.dropna`` can now take multiple axes (tuple/list) as input
27+
(GH924_)
28+
- Enable ``skip_footer`` parameter in ``ExcelFile.parse`` (GH1843_)
2429

2530
API changes
2631
~~~~~~~~~~~
@@ -43,6 +48,8 @@ API changes
4348
- Resolved inconsistencies in specifying custom NA values in text parser.
4449
`na_values` of type dict no longer override default NAs unless
4550
`keep_default_na` is set to false explicitly (GH1657_)
51+
- DataFrame.dot will not do data alignment, and also work with Series
52+
(GH1915_)
4653

4754

4855
See the `full release notes
@@ -64,3 +71,8 @@ on GitHub for a complete list.
6471
.. _GH1630: https://github.com/pydata/pandas/issues/1630
6572
.. _GH1809: https://github.com/pydata/pandas/issues/1809
6673
.. _GH1657: https://github.com/pydata/pandas/issues/1657
74+
.. _GH1871: https://github.com/pydata/pandas/issues/1871
75+
.. _GH1679: https://github.com/pydata/pandas/issues/1679
76+
.. _GH1915: https://github.com/pydata/pandas/issues/1915
77+
.. _GH924: https://github.com/pydata/pandas/issues/924
78+
.. _GH1843: https://github.com/pydata/pandas/issues/1843

0 commit comments

Comments
 (0)