Skip to content

Commit c2595ca

Browse files
adrinjalaliglemaitre
authored andcommitted
MNT bumb version number to 1.1 (scikit-learn#20945)
* MNT bumb version number * add whats new to toc tree * Update doc/whats_new/v1.1.rst Co-authored-by: Guillaume Lemaitre <g.lemaitre58@gmail.com> Co-authored-by: Guillaume Lemaitre <g.lemaitre58@gmail.com>
1 parent 761743f commit c2595ca

File tree

4 files changed

+55
-2
lines changed

4 files changed

+55
-2
lines changed

doc/whats_new.rst

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on libraries.io to be notified when new versions are released.
1212
.. toctree::
1313
:maxdepth: 1
1414

15+
Version 1.1 <whats_new/v1.1.rst>
1516
Version 1.0 <whats_new/v1.0.rst>
1617
Version 0.24 <whats_new/v0.24.rst>
1718
Version 0.23 <whats_new/v0.23.rst>

doc/whats_new/v1.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Version 1.0.0
88
=============
99

10-
**In Development**
10+
**September 2021**
1111

1212

1313
.. include:: changelog_legend.inc

doc/whats_new/v1.1.rst

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
.. include:: _contributors.rst
2+
3+
.. currentmodule:: sklearn
4+
5+
.. _changes_1_1:
6+
7+
Version 1.1.0
8+
=============
9+
10+
**In Development**
11+
12+
13+
.. include:: changelog_legend.inc
14+
15+
Minimal dependencies
16+
--------------------
17+
18+
Version 1.1.0 of scikit-learn requires python 3.7+, numpy 1.14.6+ and
19+
scipy 1.1.0+. Optional minimal dependency is matplotlib 2.2.2+.
20+
21+
Put the changes in their relevant module.
22+
23+
Changed models
24+
--------------
25+
26+
27+
Changelog
28+
---------
29+
30+
..
31+
Entries should be grouped by module (in alphabetic order) and prefixed with
32+
one of the labels: |MajorFeature|, |Feature|, |Efficiency|, |Enhancement|,
33+
|Fix| or |API| (see whats_new.rst for descriptions).
34+
Entries should be ordered by those labels (e.g. |Fix| after |Efficiency|).
35+
Changes not specific to a module should be listed under *Multiple Modules*
36+
or *Miscellaneous*.
37+
Entries should end with:
38+
:pr:`123456` by :user:`Joe Bloggs <joeongithub>`.
39+
where 123456 is the *pull request* number, not the issue number.
40+
41+
42+
:mod:`sklearn.decomposition`
43+
............................
44+
45+
46+
Code and Documentation Contributors
47+
-----------------------------------
48+
49+
Thanks to everyone who has contributed to the maintenance and improvement of
50+
the project since version 1.0, including:
51+
52+
TODO: update at the time of the release.

sklearn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
4040
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
4141
#
42-
__version__ = "1.0.dev0"
42+
__version__ = "1.1.dev0"
4343

4444

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

0 commit comments

Comments
 (0)