diff --git a/CHANGELOGS.rst b/CHANGELOGS.rst index c46b11f2..6f6aeddd 100644 --- a/CHANGELOGS.rst +++ b/CHANGELOGS.rst @@ -1,10 +1,11 @@ Change Logs =========== -0.7.17 -++++++ +0.8.0 ++++++ -* :pr:`276`: implements onnx_generate which implements method generate for an onnx model +* :pr:`276`: implements onnx_generate which implements method generate for an onnx model, + changes the serialization for all caches to reorder the model outputs (key_1, value_1, key_2, ...) * :pr:`275`: fixes function ``patched_vmap`` 0.7.16 diff --git a/_doc/index.rst b/_doc/index.rst index 32b97e66..1e085515 100644 --- a/_doc/index.rst +++ b/_doc/index.rst @@ -239,7 +239,7 @@ The function replaces dynamic dimensions defined as strings by Older versions ============== -* `0.7.17 <../v0.7.17/index.html>`_ +* `0.8.0 <../v0.8.0/index.html>`_ * `0.7.16 <../v0.7.16/index.html>`_ * `0.6.3 <../v0.6.3/index.html>`_ * `0.5.0 <../v0.5.0/index.html>`_ diff --git a/onnx_diagnostic/__init__.py b/onnx_diagnostic/__init__.py index 71fca7c8..d24d22e3 100644 --- a/onnx_diagnostic/__init__.py +++ b/onnx_diagnostic/__init__.py @@ -3,5 +3,5 @@ Functions, classes to dig into a model when this one is right, slow, wrong... """ -__version__ = "0.7.17" +__version__ = "0.8.0" __author__ = "Xavier Dupré" diff --git a/pyproject.toml b/pyproject.toml index 55019d34..c6d0b237 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "onnx-diagnostic" -version = "0.7.17" +version = "0.8.0" description = "Tools to help converting pytorch models into ONNX." readme = "README.rst" authors = [