Skip to content

Commit 0b3aa5e

Browse files
committed
DOC bump version
1 parent ee98678 commit 0b3aa5e

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

doc/whats_new.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Legend for changelogs
2424
- |API|: you will need to change your code to have the same effect in the
2525
future; or a feature will be removed in the future.
2626

27+
.. include:: whats_new/v0.22.rst
2728
.. include:: whats_new/v0.21.rst
28-
.. include:: whats_new/v0.20.rst
2929

3030
.. _previous_releases_whats_new:
3131

doc/whats_new/v0.22.rst

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.. include:: _contributors.rst
2+
3+
.. currentmodule:: sklearn
4+
5+
.. _changes_0_22:
6+
7+
Version 0.22.0
8+
==============
9+
10+
**In Development**
11+
12+
Changed models
13+
--------------
14+
15+
The following estimators and functions, when fit with the same data and
16+
parameters, may produce different models from the previous version. This often
17+
occurs due to changes in the modelling logic (bug fixes or enhancements), or in
18+
random sampling procedures.
19+
20+
..
21+
TO FILL IN AS WE GO
22+
23+
Details are listed in the changelog below.
24+
25+
(While we are trying to better inform users by providing this information, we
26+
cannot assure that this list is complete.)
27+
28+
Changelog
29+
---------
30+
31+
..
32+
Entries should be grouped by module (in alphabetic order) and prefixed with
33+
one of the labels: |MajorFeature|, |Feature|, |Efficiency|, |Enhancement|,
34+
|Fix| or |API| (see whats_new.rst for descriptions).
35+
Entries should be ordered by those labels (e.g. |Fix| after |Efficiency|).
36+
Changes not specific to a module should be listed under *Multiple Modules*
37+
or *Miscellaneous*.
38+
Entries should end with:
39+
:pr:`123456` by :user:`Joe Bloggs <joeongithub>`.
40+
where 123456 is the *pull request* number, not the issue number.
41+
42+
Changes to estimator checks
43+
---------------------------
44+
45+
These changes mostly affect library developers.

sklearn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
4646
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
4747
#
48-
__version__ = '0.21.dev0'
48+
__version__ = '0.22.dev0'
4949

5050

5151
# On OSX, we can get a runtime error due to multiple OpenMP libraries loaded

0 commit comments

Comments
 (0)