Skip to content

Commit eccafcc

Browse files
jorisvandenbosschejreback
authored andcommitted
DOC: update versionadded references of 0.22 to 0.23 (#18911)
1 parent 316acbf commit eccafcc

File tree

14 files changed

+17
-17
lines changed

14 files changed

+17
-17
lines changed

doc/source/merging.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ standard database join operations between DataFrame objects:
568568
.. note::
569569

570570
Support for specifying index levels as the ``on``, ``left_on``, and
571-
``right_on`` parameters was added in version 0.22.0.
571+
``right_on`` parameters was added in version 0.23.0.
572572

573573
The return type will be the same as ``left``. If ``left`` is a ``DataFrame``
574574
and ``right`` is a subclass of DataFrame, the return type will still be

doc/source/reshaping.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ By default new columns will have ``np.uint8`` dtype. To choose another dtype use
642642
643643
pd.get_dummies(df, dtype=bool).dtypes
644644
645-
.. versionadded:: 0.22.0
645+
.. versionadded:: 0.23.0
646646

647647

648648
.. _reshaping.factorize:

pandas/core/categorical.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ def rename_categories(self, new_categories, inplace=False):
859859
* callable : a callable that is called on all items in the old
860860
categories and whose return values comprise the new categories.
861861
862-
.. versionadded:: 0.22.0
862+
.. versionadded:: 0.23.0
863863
864864
.. warning::
865865

pandas/core/frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
Notes
201201
-----
202202
Support for specifying index levels as the `on`, `left_on`, and
203-
`right_on` parameters was added in version 0.22.0
203+
`right_on` parameters was added in version 0.23.0
204204
205205
Examples
206206
--------
@@ -5094,7 +5094,7 @@ def join(self, other, on=None, how='left', lsuffix='', rsuffix='',
50945094
of DataFrame objects
50955095
50965096
Support for specifying index levels as the `on` parameter was added
5097-
in version 0.22.0
5097+
in version 0.23.0
50985098
50995099
Examples
51005100
--------

pandas/core/generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1692,7 +1692,7 @@ def to_json(self, path_or_buf=None, orient=None, date_format=None,
16921692
including the index (``index=False``) is only supported when
16931693
orient is 'split' or 'table'.
16941694
1695-
.. versionadded:: 0.22.0
1695+
.. versionadded:: 0.23.0
16961696
16971697
Returns
16981698
-------

pandas/core/indexes/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3785,7 +3785,7 @@ def drop(self, labels, errors='raise'):
37853785
level : int or str, optional, default None
37863786
Only return values from specified level (for MultiIndex)
37873787
3788-
.. versionadded:: 0.22.0
3788+
.. versionadded:: 0.23.0
37893789
37903790
Returns
37913791
-------

pandas/core/indexes/interval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def to_tuples(self, na_tuple=True):
554554
Returns NA as a tuple if True, ``(nan, nan)``, or just as the NA
555555
value itself if False, ``nan``.
556556
557-
..versionadded:: 0.22.0
557+
..versionadded:: 0.23.0
558558
559559
Examples
560560
--------

pandas/core/reshape/melt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def wide_to_long(df, stubnames, i, j, sep="", suffix=r'\d+'):
200200
201201
.. versionadded:: 0.20.0
202202
203-
.. versionchanged:: 0.22.0
203+
.. versionchanged:: 0.23.0
204204
When all suffixes are numeric, they are cast to int64/float64.
205205
206206
Returns

pandas/core/reshape/reshape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ def get_dummies(data, prefix=None, prefix_sep='_', dummy_na=False,
731731
dtype : dtype, default np.uint8
732732
Data type for new columns. Only a single dtype is allowed.
733733
734-
.. versionadded:: 0.22.0
734+
.. versionadded:: 0.23.0
735735
736736
Returns
737737
-------

pandas/core/tools/datetimes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def to_datetime(arg, errors='raise', dayfirst=False, yearfirst=False,
184184
conversion. May produce sigificant speed-up when parsing duplicate date
185185
strings, especially ones with timezone offsets.
186186
187-
.. versionadded:: 0.22.0
187+
.. versionadded:: 0.23.0
188188
189189
Returns
190190
-------

0 commit comments

Comments
 (0)