Skip to content

Commit 6d9bd5a

Browse files
committed
DOC: release notes, bump to RC2
1 parent b4314f4 commit 6d9bd5a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

doc/source/v0.9.0.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,14 @@ New features
3030
API changes
3131
~~~~~~~~~~~
3232

33+
- Creating a Series from another Series, passing an index, will cause
34+
reindexing to happen inside rather than treating the Series like an
35+
ndarray. Technically improper usages like Series(df[col1], index=df[col2])
36+
that worked before "by accident" (this was never intended) will lead to all
37+
NA Series in some cases.
3338
- Deprecated ``day_of_year`` API removed from PeriodIndex, use ``dayofyear``
3439
(GH1723_)
35-
- Don't modify NumPy suppress printoption at import time
40+
- Don't modify NumPy suppress printoption to True at import time
3641
- The internal HDF5 data arrangement for DataFrames has been transposed.
3742
Legacy files will still be readable by HDFStore (GH1834_, GH1824_)
3843
- Legacy cruft removed: pandas.stats.misc.quantileTS

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
MICRO = 0
186186
ISRELEASED = True
187187
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
188-
QUALIFIER = 'rc1'
188+
QUALIFIER = 'rc2'
189189

190190
FULLVERSION = VERSION
191191
if not ISRELEASED:

0 commit comments

Comments
 (0)