From ca2d2b7b13e113c5ab9b796fdc3968d660a47fe3 Mon Sep 17 00:00:00 2001 From: xadupre Date: Mon, 21 Jul 2025 13:54:27 +0200 Subject: [PATCH 1/2] fix doc --- CHANGELOGS.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOGS.rst b/CHANGELOGS.rst index d7000af..7fe4229 100644 --- a/CHANGELOGS.rst +++ b/CHANGELOGS.rst @@ -5,6 +5,7 @@ Change Logs 0.5.2 ===== +* :pr:`137`: update to pybind11 3.0 * :pr:`136`: adds Python 3.13 to CI, updates the package to support scikit-learn==1.7.1 0.5.1 From b6512e3d4e147995c0e78f0b5cd7eb8e06006eda Mon Sep 17 00:00:00 2001 From: xadupre Date: Mon, 21 Jul 2025 13:58:15 +0200 Subject: [PATCH 2/2] upgrade version --- CHANGELOGS.rst | 6 +++++- _doc/index.rst | 4 ++-- mlinsights/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOGS.rst b/CHANGELOGS.rst index 7fe4229..a53ea9f 100644 --- a/CHANGELOGS.rst +++ b/CHANGELOGS.rst @@ -2,10 +2,14 @@ Change Logs =========== -0.5.2 +0.5.3 ===== * :pr:`137`: update to pybind11 3.0 + +0.5.2 +===== + * :pr:`136`: adds Python 3.13 to CI, updates the package to support scikit-learn==1.7.1 0.5.1 diff --git a/_doc/index.rst b/_doc/index.rst index f6dc20a..ae12a2e 100644 --- a/_doc/index.rst +++ b/_doc/index.rst @@ -98,5 +98,5 @@ Source are available at `sdpython/mlinsights `_ -* `0.5.1 <../v0.5.1/index.html>`_ +* `0.5.3 <../v0.5.3/index.html>`_ +* `0.5.2 <../v0.5.2/index.html>`_ diff --git a/mlinsights/__init__.py b/mlinsights/__init__.py index d4d9139..932c211 100644 --- a/mlinsights/__init__.py +++ b/mlinsights/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.2" +__version__ = "0.5.3" __author__ = "Xavier Dupré" __github__ = "https://github.com/sdpython/mlinsights" __url__ = "https://sdpython.github.io/doc/dev/mlinsights/" diff --git a/pyproject.toml b/pyproject.toml index 41dcff3..8e08ffc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ license = {file = "LICENSE.txt"} name = "mlinsights" readme = "README.rst" requires-python = ">=3.10" -version = "0.5.2" +version = "0.5.3" [project.urls] homepage = "https://sdpython.github.io/doc/mlinsights/dev/" diff --git a/setup.py b/setup.py index d188121..339ac9a 100644 --- a/setup.py +++ b/setup.py @@ -670,7 +670,7 @@ def get_package_data(): setup( name="mlinsights", - version=get_version_str(here, "0.5.2"), + version=get_version_str(here, "0.5.3"), description=get_description(), long_description=get_long_description(here), author="Xavier Dupré",