Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RELEASE] v0.6.0 #207

Merged
merged 9 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions doc/_static/versions.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
[
{
"name": "0.6 (devel)",
"name": "0.7 (devel)",
"version": "dev",
"url": "https://docs.neurodata.io/scikit-tree/dev/"
},
{
"name": "0.5",
"name": "0.6",
"version": "stable",
"url": "https://docs.neurodata.io/scikit-tree/dev/"
},
{
"name": "0.5",
"version": "0.5",
"url": "https://docs.neurodata.io/scikit-tree/v0.5/"
},
{
Expand Down
3 changes: 2 additions & 1 deletion doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ on libraries.io to be notified when new versions are released.
Version 0.3 <whats_new/v0.3.rst>
Version 0.4 <whats_new/v0.4.rst>
Version 0.5 <whats_new/v0.5.rst>
Version 0.6 (Unreleased) <whats_new/v0.6.rst>
Version 0.6 <whats_new/v0.6.rst>
Version 0.7 (Unreleased) <whats_new/v0.7.rst>

5 changes: 3 additions & 2 deletions doc/whats_new/v0.6.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
.. include:: _contributors.rst
.. currentmodule:: sktree

.. _current:
.. _v0_6:

Version 0.6
===========

**In Development**
This release includes an enhancement mainly in the MultiViewDecisionTreeClassifier
and HonestForestClassifier, and a new generative model for the make_trunk_classification.

Changelog
---------
Expand Down
22 changes: 22 additions & 0 deletions doc/whats_new/v0.7.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
:orphan:

.. include:: _contributors.rst
.. currentmodule:: sktree

.. _current:

Version 0.7
===========

**In Development**

Changelog
---------

Code and Documentation Contributors
-----------------------------------

Thanks to everyone who has contributed to the maintenance and improvement of
the project since version inception, including:

* `Adam Li`_
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(
# Note that the git commit hash cannot be added dynamically here
# That only happens when importing from a git repository.
# See `sktree/__init__.py`
version: '0.6.0dev0',
version: '0.6.0',
license: 'BSD-3',
meson_version: '>= 0.64.0',
default_options: [
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ requires = [
"setuptools<=65.5",
"packaging",
"Cython>=0.29.24",
"scikit-learn>=1.3",
"scikit-learn>=1.4",
"scipy>=1.5.0",
"numpy>=1.25; python_version>='3.9'"
]

[project]
name = "scikit-tree"
version = "0.6.0dev0"
version = "0.6.0"
description = "Modern decision trees in Python"
maintainers = [
{name = "Neurodata", email = "adam.li@columbia.edu"}
Expand Down
2 changes: 1 addition & 1 deletion sktree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
import sys

__version__ = "0.6.0dev0"
__version__ = "0.6.0"
logger = logging.getLogger(__name__)


Expand Down
Loading