Skip to content

Commit

Permalink
Bumping version from 0.16.0 to 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonmeso committed May 22, 2024
1 parent b92d4e2 commit 1500b97
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Giza CLI 0.16.0
description: Giza CLI 0.17.0
---

# Giza CLI
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/full_transpilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pip install -r requirements.txt
Or:

```bash
pip install giza-cli==0.16.0 onnx==1.14.1 torch==2.1.0 torchvision==0.16.0
pip install giza-cli==0.17.0 onnx==1.14.1 torch==2.1.0 torchvision==0.16.0
```

We will use the libraries for the following purposes:
Expand Down
2 changes: 1 addition & 1 deletion examples/mnist/mnist_pytorch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"Or:\n",
"\n",
"```bash\n",
"pip install giza-cli==0.16.0 onnx==1.14.1 torch==2.1.0 torchvision==0.16.0\n",
"pip install giza-cli==0.17.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",
Expand Down
2 changes: 1 addition & 1 deletion examples/mnist/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
giza-cli==0.16.0
giza-cli==0.17.0
onnx>=1.16.0
tf2onnx==1.15.1
torch==2.1.0
Expand Down
2 changes: 1 addition & 1 deletion giza/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os

__version__ = "0.16.0"
__version__ = "0.17.0"
# Until DNS is fixed
API_HOST = os.environ.get("GIZA_API_HOST", "https://api.gizatech.xyz")
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "giza-cli"
version = "0.16.0"
version = "0.17.0"
description = "CLI for interacting with Giza"
authors = ["Gonzalo Mellizo-Soto <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -69,7 +69,7 @@ namespace_packages = true
explicit_package_bases = true

# Bumpversion configuration
[tool.poetry_bumpversion.file."giza/__init__.py"]
[tool.poetry_bumpversion.file."giza/cli/__init__.py"]

[tool.poetry_bumpversion.file."docs/README.md"]

Expand Down

0 comments on commit 1500b97

Please sign in to comment.