Version 0.14.1 (July 11, 2014) — pandas 3.0.0.dev0+2104.ge637b4290d documentation (original) (raw)

This is a minor release from 0.14.0 and includes a small number of API changes, several new features, enhancements, and performance improvements along with a large number of bug fixes. We recommend that all users upgrade to this version.

API changes#

old behaviour < 0.14.1

In [8]: d + offsets.MonthEnd()
Out[8]: pd.Timestamp('2014-01-31 00:00:00')
Starting from 0.14.1 all offsets preserve time by default. The old behaviour can be obtained with normalize=True

new behaviour

In [1]: d + offsets.MonthEnd()
Out[1]: Timestamp('2014-01-31 09:00:00')
In [2]: d + offsets.MonthEnd(normalize=True)
Out[2]: Timestamp('2014-01-31 00:00:00')
Note that for the other offsets the default behaviour did not change.

Enhancements#

Performance#

Experimental#

Bug fixes#

Contributors#

A total of 46 people contributed patches to this release. People with a “+” by their names contributed a patch for the first time.