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] Add v0.4.x #173

Merged
merged 2 commits into from
Nov 17, 2023
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
7 changes: 6 additions & 1 deletion doc/_static/versions.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
[
{
"name": "0.4 (devel)",
"name": "0.5 (devel)",
"version": "dev",
"url": "https://docs.neurodata.io/scikit-tree/dev/"
},
{
"name": "0.4",
"version": "dev",
"url": "https://docs.neurodata.io/scikit-tree/v0.4/"
},
{
"name": "0.3",
"version": "0.3",
Expand Down
3 changes: 2 additions & 1 deletion doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ on libraries.io to be notified when new versions are released.
Version 0.1 <whats_new/v0.1.rst>
Version 0.2 <whats_new/v0.2.rst>
Version 0.3 <whats_new/v0.3.rst>
Version 0.4 (Unreleased) <whats_new/v0.4.rst>
Version 0.4 <whats_new/v0.4.rst>
Version 0.5 (Unreleased) <whats_new/v0.5.rst>

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

.. _current:
.. _v0_4:

Version 0.4
===========

**In Development**
This version patches some issues with the ``FeatureImportance*`` classes and also adds a feature to the
`MultiViewDecisionTreeClassifier` class that allows one to scale the number of split candidates sampled per feature-set
equally.

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

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

.. _current:

Version 0.5
===========

**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.4.0dev0',
version: '0.4.0',
license: 'BSD-3',
meson_version: '>= 0.64.0',
default_options: [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "scikit-tree"
# 0.0.0 is standard placeholder for poetry-dynamic-versioning
# any changes to this should not be checked in
#
version = "0.4.0dev0"
version = "0.4.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.4dev0"
__version__ = "0.4.0"
logger = logging.getLogger(__name__)


Expand Down
Loading