8000 MAINT set version to 1.6.dev0 and add 1.6 changelog (#28962) · jeromedockes/scikit-learn@00a8ae7 · GitHub
[go: up one dir, main page]

10000
Skip to content

Commit 00a8ae7

Browse files
authored
MAINT set version to 1.6.dev0 and add 1.6 changelog (scikit-learn#28962)
1 parent febf190 commit 00a8ae7

File tree

4 files changed

+45
-2
lines changed

4 files changed

+45
-2
lines changed

doc/whats_new.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Changelogs and release notes for all scikit-learn releases are linked in this pa
1515
.. toctree::
1616
:maxdepth: 2
1717

18+
whats_new/v1.6.rst
1819
whats_new/v1.5.rst
1920
whats_new/v1.4.rst
2021
whats_new/v1.3.rst

doc/whats_new/v1.6.rst

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.. include:: _contributors.rst
2+
3+
.. currentmodule:: sklearn
4+
5+
.. _release_notes_1_6:
6+
7+
===========
8+
Version 1.6
9+
===========
10+
11+
..
12+
-- UNCOMMENT WHEN 1.6.0 IS RELEASED --
13+
For a short description of the main highlights of the release, please refer to
14+
:ref:`sphx_glr_auto_examples_release_highlights_plot_release_highlights_1_6_0.py`.
15+
16+
.. include:: changelog_legend.inc
17+
18+
.. _changes_1_6:
19+
20+
Version 1.6.0
21+
=============
22+
23+
**In Development**
24+
25+
Changelog
26+
---------
27+
28+
..
29+
Entries should be grouped by module (in alphabetic order) and prefixed with
30+
one of the labels: |MajorFeature|, |Feature|, |Efficiency|, |Enhancement|,
31+
|Fix| or |API| (see whats_new.rst for descriptions).
32+
Entries should be ordered by those labels (e.g. |Fix| after |Efficiency|).
33+
Changes not specific to a module should be listed under *Multiple Modules*
34+
or *Miscellaneous*.
35+
Entries should end with:
36+
:pr:`123456` by :user:`Joe Bloggs <joeongithub>`.
37+
where 123455 is the *pull request* number, not the issue number.
38+
39+
Thanks to everyone who has contributed to the maintenance and improvement of
40+
the project since version 1.5, including:
41+
42+
TODO: update at the time of the release.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "scikit-learn"
3-
version = "1.5.dev0"
3+
version = "1.6.dev0"
44
description = "A set of python modules for machine learning and data mining"
55
readme = "README.rst"
66
maintainers = [

sklearn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
4343
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
4444
#
45-
__version__ = "1.5.dev0"
45+
__version__ = "1.6.dev0"
4646

4747

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

0 commit comments

Comments
 (0)
0