Skip to content

Commit 08a66e1

Browse files
authored
DOC: move versions 0.22 -> 0.23, add 0.22 docs (#18897)
1 parent 75b97a7 commit 08a66e1

File tree

3 files changed

+30
-14
lines changed

3 files changed

+30
-14
lines changed

doc/source/whatsnew.rst

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ What's New
1818

1919
These are new features and improvements of note in each release.
2020

21+
.. include:: whatsnew/v0.23.0.txt
22+
2123
.. include:: whatsnew/v0.22.0.txt
2224

2325
.. include:: whatsnew/v0.21.1.txt

doc/source/whatsnew/v0.22.0

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.. _whatsnew_0220:
2+
3+
v0.22.0
4+
-------
5+
6+
This is a major release from 0.21.1 and includes a number of API changes,
7+
deprecations, new features, enhancements, and performance improvements along
8+
with a large number of bug fixes. We recommend that all users upgrade to this
9+
version.
10+
11+
.. _whatsnew_0220.api_breaking:
12+
13+
Backwards incompatible API changes
14+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

doc/source/whatsnew/v0.22.0.txt renamed to doc/source/whatsnew/v0.23.0

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
.. _whatsnew_0220:
1+
.. _whatsnew_0230:
22

3-
v0.22.0
3+
v0.23.0
44
-------
55

66
This is a major release from 0.21.1 and includes a number of API changes,
77
deprecations, new features, enhancements, and performance improvements along
88
with a large number of bug fixes. We recommend that all users upgrade to this
99
version.
1010

11-
.. _whatsnew_0220.enhancements:
11+
.. _whatsnew_0230.enhancements:
1212

1313
New features
1414
~~~~~~~~~~~~
@@ -32,7 +32,7 @@ The :func:`get_dummies` now accepts a ``dtype`` argument, which specifies a dtyp
3232
pd.get_dummies(df, columns=['c'], dtype=bool).dtypes
3333

3434

35-
.. _whatsnew_0220.enhancements.merge_on_columns_and_levels:
35+
.. _whatsnew_0230.enhancements.merge_on_columns_and_levels:
3636

3737
Merging on a combination of columns and index levels
3838
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -63,7 +63,7 @@ levels <merging.merge_on_columns_and_levels>` documentation section.
6363
left.merge(right, on=['key1', 'key2'])
6464

6565

66-
.. _whatsnew_0220.enhancements.ran_inf:
66+
.. _whatsnew_0230.enhancements.ran_inf:
6767

6868
``.rank()`` handles ``inf`` values when ``NaN`` are present
6969
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -119,7 +119,7 @@ Current Behavior
119119

120120
s.rank(na_option='top')
121121

122-
.. _whatsnew_0220.enhancements.other:
122+
.. _whatsnew_0230.enhancements.other:
123123

124124
Other Enhancements
125125
^^^^^^^^^^^^^^^^^^
@@ -142,12 +142,12 @@ Other Enhancements
142142
- ``Categorical.rename_categories``, ``CategoricalIndex.rename_categories`` and :attr:`Series.cat.rename_categories`
143143
can now take a callable as their argument (:issue:`18862`)
144144

145-
.. _whatsnew_0220.api_breaking:
145+
.. _whatsnew_0230.api_breaking:
146146

147147
Backwards incompatible API changes
148148
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
149149

150-
.. _whatsnew_0220.api_breaking.deps:
150+
.. _whatsnew_0230.api_breaking.deps:
151151

152152
Dependencies have increased minimum versions
153153
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -171,7 +171,7 @@ Build Changes
171171
- Building from source now explicity requires ``setuptools`` in ``setup.py`` (:issue:`18113`)
172172
- Updated conda recipe to be in compliance with conda-build 3.0+ (:issue:`18002`)
173173

174-
.. _whatsnew_0220.api:
174+
.. _whatsnew_0230.api:
175175

176176
Other API Changes
177177
^^^^^^^^^^^^^^^^^
@@ -201,7 +201,7 @@ Other API Changes
201201
- :func:`pandas.merge` now raises a ``ValueError`` when trying to merge on incompatible data types (:issue:`9780`)
202202
- :func:`wide_to_long` previously kept numeric-like suffixes as ``object`` dtype. Now they are cast to numeric if possible (:issue:`17627`)
203203

204-
.. _whatsnew_0220.deprecations:
204+
.. _whatsnew_0230.deprecations:
205205

206206
Deprecations
207207
~~~~~~~~~~~~
@@ -217,7 +217,7 @@ Deprecations
217217
- :func:`read_excel` has deprecated the ``skip_footer`` parameter. Use ``skipfooter`` instead (:issue:`18836`)
218218
- The ``is_copy`` attribute is deprecated and will be removed in a future version (:issue:`18801`).
219219

220-
.. _whatsnew_0220.prior_deprecations:
220+
.. _whatsnew_0230.prior_deprecations:
221221

222222
Removal of prior version deprecations/changes
223223
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -238,7 +238,7 @@ Removal of prior version deprecations/changes
238238
- :func:`read_csv` has dropped the ``buffer_lines`` parameter (:issue:`13360`)
239239
- :func:`read_csv` has dropped the ``compact_ints`` and ``use_unsigned`` parameters (:issue:`13323`)
240240

241-
.. _whatsnew_0220.performance:
241+
.. _whatsnew_0230.performance:
242242

243243
Performance Improvements
244244
~~~~~~~~~~~~~~~~~~~~~~~~
@@ -256,7 +256,7 @@ Performance Improvements
256256
- Improved performance of ``DatetimeIndex`` and ``Series`` arithmetic operations with Business-Month and Business-Quarter frequencies (:issue:`18489`)
257257
- :func:`Series` / :func:`DataFrame` tab completion limits to 100 values, for better performance. (:issue:`18587`)
258258

259-
.. _whatsnew_0220.docs:
259+
.. _whatsnew_0230.docs:
260260

261261
Documentation Changes
262262
~~~~~~~~~~~~~~~~~~~~~
@@ -265,7 +265,7 @@ Documentation Changes
265265
-
266266
-
267267

268-
.. _whatsnew_0220.bug_fixes:
268+
.. _whatsnew_0230.bug_fixes:
269269

270270
Bug Fixes
271271
~~~~~~~~~

0 commit comments

Comments
 (0)