Skip to content

Commit 73de5de

Browse files
committed
Merge pull request #4038 from cpcloud/rls-whatsnew-version-number-update
CLN/DOC: update version numbers
2 parents d64c9c6 + add11f3 commit 73de5de

15 files changed

+35
-36
lines changed

doc/source/faq.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ horizontal scrolling, auto-detection of width/height.
3535
To appropriately address all these environments, the display behavior is controlled
3636
by several options, which you're encouraged to tweak to suit your setup.
3737

38-
As of 0.11.1, these are the relavent options, all under the `display` namespace,
38+
As of 0.12, these are the relevant options, all under the `display` namespace,
3939
(e.g. display.width, etc'):
4040

4141
- notebook_repr_html: if True, IPython frontends with HTML support will display

doc/source/groupby.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ and that the transformed data contains no NAs.
500500
Filtration
501501
----------
502502

503-
.. versionadded:: 0.11.1
503+
.. versionadded:: 0.12
504504

505505
The ``filter`` method returns a subset of the original object. Suppose we
506506
want to take only elements that belong to groups with a group sum greater

doc/source/io.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ rows will skip the interveaing rows.
820820
print open('mi.csv').read()
821821
pd.read_csv('mi.csv',header=[0,1,2,3],index_col=[0,1],tupleize_cols=False)
822822
823-
Note: The default behavior in 0.11.1 remains unchanged (``tupleize_cols=True``),
823+
Note: The default behavior in 0.12 remains unchanged (``tupleize_cols=True``),
824824
but starting with 0.12, the default *to* write and read multi-index columns will be in the new
825825
format (``tupleize_cols=False``)
826826

@@ -1126,7 +1126,7 @@ Reading HTML Content
11261126

11271127
.. _io.read_html:
11281128

1129-
.. versionadded:: 0.11.1
1129+
.. versionadded:: 0.12
11301130

11311131
The top-level :func:`~pandas.io.html.read_html` function can accept an HTML
11321132
string/file/url and will parse HTML tables into list of pandas DataFrames.
@@ -1501,7 +1501,7 @@ advanced strategies
15011501

15021502
.. note::
15031503

1504-
The prior method of accessing Excel is now deprecated as of 0.11.1,
1504+
The prior method of accessing Excel is now deprecated as of 0.12,
15051505
this will work but will be removed in a future version.
15061506

15071507
.. code-block:: python
@@ -1935,7 +1935,7 @@ The default is 50,000 rows returned in a chunk.
19351935
19361936
.. note::
19371937
1938-
.. versionadded:: 0.11.1
1938+
.. versionadded:: 0.12
19391939
19401940
You can also use the iterator with ``read_hdf`` which will open, then
19411941
automatically close the store when finished iterating.
@@ -2443,7 +2443,7 @@ Reading from STATA format
24432443
24442444
.. _io.stata_reader:
24452445
2446-
.. versionadded:: 0.11.1
2446+
.. versionadded:: 0.12
24472447
24482448
The top-level function ``read_stata`` will read a dta format file
24492449
and return a DataFrame:

doc/source/release.rst

+4-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Where to get it
2424
* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
2525
* Documentation: http://pandas.pydata.org
2626

27-
pandas 0.11.1
27+
pandas 0.12
2828
=============
2929

3030
**Release date:** not-yet-released
@@ -40,9 +40,9 @@ pandas 0.11.1
4040
- Added support for writing in ``to_csv`` and reading in ``read_csv``,
4141
multi-index columns. The ``header`` option in ``read_csv`` now accepts a
4242
list of the rows from which to read the index. Added the option,
43-
``tupleize_cols`` to provide compatiblity for the pre 0.11.1 behavior of
43+
``tupleize_cols`` to provide compatiblity for the pre 0.12 behavior of
4444
writing and reading multi-index columns via a list of tuples. The default in
45-
0.11.1 is to write lists of tuples and *not* interpret list of tuples as a
45+
0.12 is to write lists of tuples and *not* interpret list of tuples as a
4646
multi-index column.
4747
Note: The default value will change in 0.12 to make the default *to* write and
4848
read multi-index columns in the new format. (:issue:`3571`, :issue:`1651`, :issue:`3141`)
@@ -146,7 +146,7 @@ pandas 0.11.1
146146
- Deprecated display.height, display.width is now only a formatting option
147147
does not control triggering of summary, similar to < 0.11.0.
148148
- Add the keyword ``allow_duplicates`` to ``DataFrame.insert`` to allow a duplicate column
149-
to be inserted if ``True``, default is ``False`` (same as prior to 0.11.1) (:issue:`3679`)
149+
to be inserted if ``True``, default is ``False`` (same as prior to 0.12) (:issue:`3679`)
150150
- io API changes
151151

152152
- added ``pandas.io.api`` for i/o imports
@@ -282,7 +282,6 @@ pandas 0.11.1
282282
- Fix ``Series.clip`` for datetime series. NA/NaN threshold values will now throw ValueError (:issue:`3996`)
283283
- Fixed insertion issue into DataFrame, after rename (:issue:`4032`)
284284

285-
.. _Gh3616: https://github.com/pydata/pandas/issues/3616
286285

287286
pandas 0.11.0
288287
=============

doc/source/v0.11.1.txt renamed to doc/source/v0.12.0.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.. _whatsnew_0111:
1+
.. _whatsnew_0120:
22

3-
v0.11.1 (June ??, 2013)
3+
v0.12.0 (June ??, 2013)
44
------------------------
55

66
This is a minor release from 0.11.0 and includes several new features and
@@ -107,7 +107,7 @@ API changes
107107
performs conversion by default. (:issue:`3907`)
108108

109109
- Add the keyword ``allow_duplicates`` to ``DataFrame.insert`` to allow a duplicate column
110-
to be inserted if ``True``, default is ``False`` (same as prior to 0.11.1) (:issue:`3679`)
110+
to be inserted if ``True``, default is ``False`` (same as prior to 0.12) (:issue:`3679`)
111111
- Implement ``__nonzero__`` for ``NDFrame`` objects (:issue:`3691`, :issue:`3696`)
112112

113113
- IO api
@@ -195,12 +195,12 @@ I/O Enhancements
195195
list of the rows from which to read the index.
196196

197197
- The option, ``tupleize_cols`` can now be specified in both ``to_csv`` and
198-
``read_csv``, to provide compatiblity for the pre 0.11.1 behavior of
198+
``read_csv``, to provide compatiblity for the pre 0.12 behavior of
199199
writing and reading multi-index columns via a list of tuples. The default in
200-
0.11.1 is to write lists of tuples and *not* interpret list of tuples as a
200+
0.12 is to write lists of tuples and *not* interpret list of tuples as a
201201
multi-index column.
202202

203-
Note: The default behavior in 0.11.1 remains unchanged, but starting with 0.12,
203+
Note: The default behavior in 0.12 remains unchanged, but starting with 0.13,
204204
the default *to* write and read multi-index columns will be in the new
205205
format. (:issue:`3571`, :issue:`1651`, :issue:`3141`)
206206

doc/source/whatsnew.rst

+1-1
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.11.1.txt
19+
.. include:: v0.12.0.txt
2020

2121
.. include:: v0.11.0.txt
2222

pandas/core/api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
# legacy
3030
from pandas.core.daterange import DateRange # deprecated
31-
from pandas.core.common import save, load # deprecated, remove in 0.12
31+
from pandas.core.common import save, load # deprecated, remove in 0.13
3232
import pandas.core.datetools as datetools
3333

3434
from pandas.core.config import get_option, set_option, reset_option,\

pandas/core/common.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2076,7 +2076,7 @@ def console_encode(object, **kwds):
20762076
return pprint_thing_encoded(object,
20772077
get_option("display.encoding"))
20782078

2079-
def load(path): # TODO remove in 0.12
2079+
def load(path): # TODO remove in 0.13
20802080
"""
20812081
Load pickled pandas object (or any other pickled object) from the specified
20822082
file path
@@ -2098,7 +2098,7 @@ def load(path): # TODO remove in 0.12
20982098
from pandas.io.pickle import read_pickle
20992099
return read_pickle(path)
21002100

2101-
def save(obj, path): # TODO remove in 0.12
2101+
def save(obj, path): # TODO remove in 0.13
21022102
'''
21032103
Pickle (serialize) object to input file path
21042104

pandas/core/format.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ def __init__(self, obj, path_or_buf, sep=",", na_rep='', float_format=None,
793793
line_terminator='\n', chunksize=None, engine=None,
794794
tupleize_cols=True):
795795

796-
self.engine = engine # remove for 0.12
796+
self.engine = engine # remove for 0.13
797797
self.obj = obj
798798

799799
self.path_or_buf = path_or_buf
@@ -962,7 +962,7 @@ def save(self):
962962
delimiter=self.sep, quoting=self.quoting)
963963

964964
if self.engine == 'python':
965-
# to be removed in 0.12
965+
# to be removed in 0.13
966966
self._helper_csv(self.writer, na_rep=self.na_rep,
967967
float_format=self.float_format, cols=self.cols,
968968
header=self.header, index=self.index,

pandas/core/frame.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -568,14 +568,14 @@ def _wrap_array(self, arr, axes, copy=False):
568568
def _verbose_info(self):
569569
import warnings
570570
warnings.warn('The _verbose_info property will be removed in version '
571-
'0.12. please use "max_info_rows"', FutureWarning)
571+
'0.13. please use "max_info_rows"', FutureWarning)
572572
return get_option('display.max_info_rows') is None
573573

574574
@_verbose_info.setter
575575
def _verbose_info(self, value):
576576
import warnings
577577
warnings.warn('The _verbose_info property will be removed in version '
578-
'0.12. please use "max_info_rows"', FutureWarning)
578+
'0.13. please use "max_info_rows"', FutureWarning)
579579

580580
value = None if value else 1000000
581581
set_option('display.max_info_rows', value)
@@ -3593,12 +3593,12 @@ def replace(self, to_replace=None, value=None, inplace=False, limit=None,
35933593
if method is not None:
35943594
from warnings import warn
35953595
warn('the "method" argument is deprecated and will be removed in'
3596-
'v0.12; this argument has no effect')
3596+
'v0.13; this argument has no effect')
35973597

35983598
if axis is not None:
35993599
from warnings import warn
36003600
warn('the "axis" argument is deprecated and will be removed in'
3601-
'v0.12; this argument has no effect')
3601+
'v0.13; this argument has no effect')
36023602

36033603
self._consolidate_inplace()
36043604

@@ -3733,7 +3733,7 @@ def interpolate(self, to_replace, method='pad', axis=0, inplace=False,
37333733
reindex, replace, fillna
37343734
"""
37353735
from warnings import warn
3736-
warn('DataFrame.interpolate will be removed in v0.12, please use '
3736+
warn('DataFrame.interpolate will be removed in v0.13, please use '
37373737
'either DataFrame.fillna or DataFrame.replace instead',
37383738
FutureWarning)
37393739
if self._is_mixed_type and axis == 1:

pandas/core/generic.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ def to_pickle(self, path):
3636
from pandas.io.pickle import to_pickle
3737
return to_pickle(self, path)
3838

39-
def save(self, path): # TODO remove in 0.12
39+
def save(self, path): # TODO remove in 0.13
4040
import warnings
4141
from pandas.io.pickle import to_pickle
4242
warnings.warn("save is deprecated, use to_pickle", FutureWarning)
4343
return to_pickle(self, path)
4444

45-
def load(self, path): # TODO remove in 0.12
45+
def load(self, path): # TODO remove in 0.13
4646
import warnings
4747
from pandas.io.pickle import read_pickle
4848
warnings.warn("load is deprecated, use pd.read_pickle", FutureWarning)

pandas/io/parsers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1957,7 +1957,7 @@ def _make_reader(self, f):
19571957
self.data = FixedWidthReader(f, self.colspecs, self.delimiter)
19581958

19591959

1960-
##### deprecations in 0.11.1 #####
1960+
##### deprecations in 0.12 #####
19611961
##### remove in 0.12 #####
19621962

19631963
from pandas.io import clipboard

pandas/io/tests/test_excel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ def roundtrip(df, header=True, parser_hdr=0):
861861

862862
def test_deprecated_from_parsers(self):
863863

864-
# since 0.11.1 changed the import path
864+
# since 0.12 changed the import path
865865
import warnings
866866

867867
with warnings.catch_warnings() as w:

pandas/tools/plotting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ def _compute_plot_data(self):
880880
try:
881881
# might be an ndframe
882882
numeric_data = self.data._get_numeric_data()
883-
except AttributeError: # TODO: rm in 0.12 (series-inherit-ndframe)
883+
except AttributeError: # TODO: rm in 0.13 (series-inherit-ndframe)
884884
numeric_data = self.data
885885
orig_dtype = numeric_data.dtype
886886

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ def build_extensions(self):
187187
]
188188

189189
MAJOR = 0
190-
MINOR = 11
191-
MICRO = 1
190+
MINOR = 12
191+
MICRO = 0
192192
ISRELEASED = False
193193
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
194194
QUALIFIER = ''

0 commit comments

Comments
 (0)