Skip to content

Commit 529e8fa

Browse files
committed
CLN/DOC: remove all remnants of the 0.11.1 version number
1 parent d64c9c6 commit 529e8fa

File tree

9 files changed

+22
-23
lines changed

9 files changed

+22
-23
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 relavent 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/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:

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)