File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,14 @@ New features
30
30
API changes
31
31
~~~~~~~~~~~
32
32
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.
33
38
- Deprecated ``day_of_year`` API removed from PeriodIndex, use ``dayofyear``
34
39
(GH1723_)
35
- - Don't modify NumPy suppress printoption at import time
40
+ - Don't modify NumPy suppress printoption to True at import time
36
41
- The internal HDF5 data arrangement for DataFrames has been transposed.
37
42
Legacy files will still be readable by HDFStore (GH1834_, GH1824_)
38
43
- Legacy cruft removed: pandas.stats.misc.quantileTS
Original file line number Diff line number Diff line change 185
185
MICRO = 0
186
186
ISRELEASED = True
187
187
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
188
- QUALIFIER = 'rc1 '
188
+ QUALIFIER = 'rc2 '
189
189
190
190
FULLVERSION = VERSION
191
191
if not ISRELEASED :
You can’t perform that action at this time.
0 commit comments