Skip to content

Commit db7c234

Browse files
committed
RLS: bump dev version to 0.11
1 parent 528afb2 commit db7c234

File tree

4 files changed

+38
-31
lines changed

4 files changed

+38
-31
lines changed

RELEASE.rst

Lines changed: 31 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -22,48 +22,56 @@ Where to get it
2222
* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
2323
* Documentation: http://pandas.pydata.org
2424

25-
pandas 0.10.2
25+
pandas 0.11.0
2626
=============
2727

2828
**Release date:** 2013-??-??
2929

3030
**New features**
3131

32-
- Allow mixed dtypes (e.g ``float32/float64/int32/int16/int8``) to coexist in DataFrames and propogate in operations
32+
- Allow mixed dtypes (e.g ``float32/float64/int32/int16/int8``) to coexist in
33+
DataFrames and propogate in operations
3334

3435
**Improvements to existing features**
3536

36-
- added ``blocks`` attribute to DataFrames, to return a dict of dtypes to homogeneously dtyped DataFrames
37-
- added keyword ``convert_numeric`` to ``convert_objects()`` to try to convert object dtypes to numeric types
38-
- ``convert_dates`` in ``convert_objects`` can now be ``coerce`` which will return a datetime64[ns] dtype
39-
with non-convertibles set as ``NaT``; will preserve an all-nan object (e.g. strings)
37+
- added ``blocks`` attribute to DataFrames, to return a dict of dtypes to
38+
homogeneously dtyped DataFrames
39+
- added keyword ``convert_numeric`` to ``convert_objects()`` to try to
40+
convert object dtypes to numeric types
41+
- ``convert_dates`` in ``convert_objects`` can now be ``coerce`` which will
42+
return a datetime64[ns] dtype with non-convertibles set as ``NaT``; will
43+
preserve an all-nan object (e.g. strings)
4044
- Series print output now includes the dtype by default
45+
- Optimize internal reindexing routines for upcasting cases (#2819)
4146

4247
**API Changes**
4348

44-
- Do not automatically upcast numeric specified dtypes to ``int64`` or ``float64`` (GH622_ and GH797_)
45-
- Guarantee that ``convert_objects()`` for Series/DataFrame always returns a copy
46-
- groupby operations will respect dtypes for numeric float operations (float32/float64); other types will be operated on,
47-
and will try to cast back to the input dtype (e.g. if an int is passed, as long as the output doesn't have nans,
48-
then an int will be returned)
49+
- Do not automatically upcast numeric specified dtypes to ``int64`` or
50+
``float64`` (GH622_ and GH797_)
51+
- Guarantee that ``convert_objects()`` for Series/DataFrame always returns a
52+
copy
53+
- groupby operations will respect dtypes for numeric float operations
54+
(float32/float64); other types will be operated on, and will try to cast
55+
back to the input dtype (e.g. if an int is passed, as long as the output
56+
doesn't have nans, then an int will be returned)
4957
- backfill/pad/take/diff/ohlc will now support ``float32/int16/int8`` operations
5058
- Integer block types will upcast as needed in where operations (GH2793_)
59+
- Series now automatically will try to set the correct dtype based on passed
60+
datetimelike objects (datetime/Timestamp)
61+
- timedelta64 are returned in appropriate cases (e.g. Series - Series,
62+
when both are datetime64)
63+
- mixed datetimes and objects (GH2751_) in a constructor witll be casted
64+
correctly
65+
- astype on datetimes to object are now handled (as well as NaT
66+
conversions to np.nan)
5167

5268
**Bug Fixes**
5369

5470
- Fix seg fault on empty data frame when fillna with ``pad`` or ``backfill`` (GH2778_)
55-
56-
**API Changes**
57-
58-
- Series now automatically will try to set the correct dtype based on passed datetimelike objects (datetime/Timestamp)
59-
- timedelta64 are returned in appropriate cases (e.g. Series - Series, when both are datetime64)
60-
- mixed datetimes and objects (GH2751_) in a constructor witll be casted correctly
61-
- astype on datetimes to object are now handled (as well as NaT conversions to np.nan)
62-
63-
**Bug fixes**
64-
65-
- Single element ndarrays of datetimelike objects are handled (e.g. np.array(datetime(2001,1,1,0,0))), w/o dtype being passed
66-
- 0-dim ndarrays with a passed dtype are handled correctly (e.g. np.array(0.,dtype='float32'))
71+
- Single element ndarrays of datetimelike objects are handled
72+
(e.g. np.array(datetime(2001,1,1,0,0))), w/o dtype being passed
73+
- 0-dim ndarrays with a passed dtype are handled correctly
74+
(e.g. np.array(0.,dtype='float32'))
6775

6876
.. _GH622: https://github.com/pydata/pandas/issues/622
6977
.. _GH797: https://github.com/pydata/pandas/issues/797

doc/source/v0.10.2.txt renamed to doc/source/v0.11.0.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
.. _whatsnew_0102:
1+
.. _whatsnew_0110:
22

3-
v0.10.2 (February ??, 2013)
4-
---------------------------
3+
v0.11.0 (March ??, 2013)
4+
------------------------
55

66
This is a minor release from 0.10.1 and includes many new features and
77
enhancements along with a large number of bug fixes. There are also a number of

doc/source/whatsnew.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ What's New
1616

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

19-
.. include:: v0.10.2.txt
19+
.. include:: v0.11.0.txt
2020

2121
.. include:: v0.10.1.txt
2222

@@ -45,4 +45,3 @@ These are new features and improvements of note in each release.
4545
.. include:: v0.5.0.txt
4646

4747
.. include:: v0.4.x.txt
48-

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@
199199
]
200200

201201
MAJOR = 0
202-
MINOR = 10
203-
MICRO = 1
204-
ISRELEASED = True
202+
MINOR = 11
203+
MICRO = 0
204+
ISRELEASED = False
205205
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
206206
QUALIFIER = ''
207207

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy