Skip to content

Commit

Permalink
MAINT set version to 1.6.dev0 and add 1.6 changelog (scikit-learn#28962)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiedbb authored May 7, 2024
1 parent febf190 commit 00a8ae7
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Changelogs and release notes for all scikit-learn releases are linked in this pa
.. toctree::
:maxdepth: 2

whats_new/v1.6.rst
whats_new/v1.5.rst
whats_new/v1.4.rst
whats_new/v1.3.rst
Expand Down
42 changes: 42 additions & 0 deletions doc/whats_new/v1.6.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
.. include:: _contributors.rst

.. currentmodule:: sklearn

.. _release_notes_1_6:

===========
Version 1.6
===========

..
-- UNCOMMENT WHEN 1.6.0 IS RELEASED --
For a short description of the main highlights of the release, please refer to
:ref:`sphx_glr_auto_examples_release_highlights_plot_release_highlights_1_6_0.py`.
.. include:: changelog_legend.inc

.. _changes_1_6:

Version 1.6.0
=============

**In Development**

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 <joeongithub>`.
where 123455 is the *pull request* number, not the issue number.
Thanks to everyone who has contributed to the maintenance and improvement of
the project since version 1.5, including:

TODO: update at the time of the release.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "scikit-learn"
version = "1.5.dev0"
version = "1.6.dev0"
description = "A set of python modules for machine learning and data mining"
readme = "README.rst"
maintainers = [
Expand Down
2 changes: 1 addition & 1 deletion sklearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,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.5.dev0"
__version__ = "1.6.dev0"


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

0 comments on commit 00a8ae7

Please sign in to comment.