diff --git a/CHANGELOGS.rst b/CHANGELOGS.rst index d7000af..a53ea9f 100644 --- a/CHANGELOGS.rst +++ b/CHANGELOGS.rst @@ -2,6 +2,11 @@ Change Logs =========== +0.5.3 +===== + +* :pr:`137`: update to pybind11 3.0 + 0.5.2 ===== 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é",