From a8a855f3f450d588cec90dac3882695f4d6b213a Mon Sep 17 00:00:00 2001 From: adrinjalali Date: Sun, 5 Sep 2021 11:30:38 +0200 Subject: [PATCH 1/3] MNT bumb version number --- doc/whats_new/v1.0.rst | 2 +- doc/whats_new/v1.1.rst | 52 ++++++++++++++++++++++++++++++++++++++++++ sklearn/__init__.py | 2 +- 3 files changed, 54 insertions(+), 2 deletions(-) create mode 100644 doc/whats_new/v1.1.rst diff --git a/doc/whats_new/v1.0.rst b/doc/whats_new/v1.0.rst index ee387de9d26b6..8afe0fef9900a 100644 --- a/doc/whats_new/v1.0.rst +++ b/doc/whats_new/v1.0.rst @@ -7,7 +7,7 @@ Version 1.0.0 ============= -**In Development** +**September 2021** .. include:: changelog_legend.inc diff --git a/doc/whats_new/v1.1.rst b/doc/whats_new/v1.1.rst new file mode 100644 index 0000000000000..19864ac578a02 --- /dev/null +++ b/doc/whats_new/v1.1.rst @@ -0,0 +1,52 @@ +.. include:: _contributors.rst + +.. currentmodule:: sklearn + +.. _changes_1_1: + +Version 1.1.0 +============= + +**In Development** + + +.. include:: changelog_legend.inc + +Minimal dependencies +-------------------- + +Version 1.1.0 of scikit-learn requires python 3.7+, numpy 1.14.6+ and +scipy 1.1.0+. Optional minimal dependency is matplotlib 2.2.2+. + +Put the changes in their relevant module. + +Changed models +-------------- + + +Changelog +--------- + +.. + Entries should be grouped by module (in alphabetic order) and prefixed with + one of the labels: |MajorFeature|, |Feature|, |Efficiency|, |Enhancement|, + |Fix| or |API| (see whats_new.rst for descriptions). + Entries should be ordered by those labels (e.g. |Fix| after |Efficiency|). + Changes not specific to a module should be listed under *Multiple Modules* + or *Miscellaneous*. + Entries should end with: + :pr:`123456` by :user:`Joe Bloggs `. + where 123456 is the *pull request* number, not the issue number. + + +:mod:`sklearn.decomposition` +............................ + + +Code and Documentation Contributors +----------------------------------- + +Thanks to everyone who has contributed to the maintenance and improvement of +the project since version 0.24, including: + +TODO: update at the time of the release. diff --git a/sklearn/__init__.py b/sklearn/__init__.py index face7cfb89656..77ee28271bfaf 100644 --- a/sklearn/__init__.py +++ b/sklearn/__init__.py @@ -39,7 +39,7 @@ # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = "1.0.dev0" +__version__ = "1.1.dev0" # On OSX, we can get a runtime error due to multiple OpenMP libraries loaded From ab0db906f327ca9066f8e9c25443c675c8b905b3 Mon Sep 17 00:00:00 2001 From: adrinjalali Date: Sun, 5 Sep 2021 19:35:53 +0200 Subject: [PATCH 2/3] add whats new to toc tree --- doc/whats_new.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/whats_new.rst b/doc/whats_new.rst index 2231173d62224..931420a30b02f 100644 --- a/doc/whats_new.rst +++ b/doc/whats_new.rst @@ -12,6 +12,7 @@ on libraries.io to be notified when new versions are released. .. toctree:: :maxdepth: 1 + Version 1.1 Version 1.0 Version 0.24 Version 0.23 From a1c73604b0076e16ca64a9940e269875af395323 Mon Sep 17 00:00:00 2001 From: Adrin Jalali Date: Mon, 6 Sep 2021 11:37:41 +0200 Subject: [PATCH 3/3] Update doc/whats_new/v1.1.rst Co-authored-by: Guillaume Lemaitre --- doc/whats_new/v1.1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/whats_new/v1.1.rst b/doc/whats_new/v1.1.rst index 19864ac578a02..1639b4b691c65 100644 --- a/doc/whats_new/v1.1.rst +++ b/doc/whats_new/v1.1.rst @@ -47,6 +47,6 @@ Code and Documentation Contributors ----------------------------------- Thanks to everyone who has contributed to the maintenance and improvement of -the project since version 0.24, including: +the project since version 1.0, including: TODO: update at the time of the release.