diff --git a/meson.build b/meson.build index 6ca25c1c7..487b29df9 100644 --- a/meson.build +++ b/meson.build @@ -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.7.0', + version: '0.7.1', license: 'BSD-3', meson_version: '>= 0.64.0', default_options: [ diff --git a/pyproject.toml b/pyproject.toml index 775567b2c..b902aa356 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ requires = [ [project] name = "scikit-tree" -version = "0.7.0" +version = "0.7.1" description = "Modern decision trees in Python" maintainers = [ {name = "Neurodata", email = "adam.li@columbia.edu"} diff --git a/sktree/__init__.py b/sktree/__init__.py index 1bd9a934e..c171d9028 100644 --- a/sktree/__init__.py +++ b/sktree/__init__.py @@ -4,7 +4,7 @@ import os import sys -__version__ = "0.7.0" +__version__ = "0.7.1" logger = logging.getLogger(__name__)