diff --git a/docs/README.md b/docs/README.md index b674d0a..711f63e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,5 +1,5 @@ --- -description: Giza CLI 0.15.1 +description: Giza CLI 0.16.0 --- # Giza CLI diff --git a/docs/examples/full_transpilation.md b/docs/examples/full_transpilation.md index ad47448..05f5483 100644 --- a/docs/examples/full_transpilation.md +++ b/docs/examples/full_transpilation.md @@ -21,7 +21,7 @@ pip install -r requirements.txt Or: ```bash -pip install giza-cli==0.15.1 onnx==1.14.1 torch==2.1.0 torchvision==0.16.0 +pip install giza-cli==0.16.0 onnx==1.14.1 torch==2.1.0 torchvision==0.16.0 ``` We will use the libraries for the following purposes: diff --git a/examples/mnist/mnist_pytorch.ipynb b/examples/mnist/mnist_pytorch.ipynb index 7c8ad58..ee931cf 100644 --- a/examples/mnist/mnist_pytorch.ipynb +++ b/examples/mnist/mnist_pytorch.ipynb @@ -41,7 +41,7 @@ "Or:\n", "\n", "```bash\n", - "pip install giza-cli==0.15.1 onnx==1.14.1 torch==2.1.0 torchvision==0.16.0\n", + "pip install giza-cli==0.16.0 onnx==1.14.1 torch==2.1.0 torchvision==0.16.0\n", "```\n", "\n", "We will use the libraries for the following purposes:\n", diff --git a/examples/mnist/requirements.txt b/examples/mnist/requirements.txt index 6117cfc..b41d423 100644 --- a/examples/mnist/requirements.txt +++ b/examples/mnist/requirements.txt @@ -1,4 +1,4 @@ -giza-cli==0.15.1 +giza-cli==0.16.0 onnx>=1.16.0 tf2onnx==1.15.1 torch==2.1.0 diff --git a/giza/__init__.py b/giza/__init__.py index 084d16b..36acdc2 100644 --- a/giza/__init__.py +++ b/giza/__init__.py @@ -1,5 +1,5 @@ import os -__version__ = "0.15.1" +__version__ = "0.16.0" # Until DNS is fixed API_HOST = os.environ.get("GIZA_API_HOST", "https://api.gizatech.xyz") diff --git a/pyproject.toml b/pyproject.toml index a908a28..153b3ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "giza-cli" -version = "0.15.1" +version = "0.16.0" description = "CLI for interacting with Giza" authors = ["Gonzalo Mellizo-Soto "] readme = "README.md"