From 4759b2464f7dfab0f682429bfab1276380262fec Mon Sep 17 00:00:00 2001 From: hari-dhanushkodi Date: Thu, 12 Mar 2026 19:26:16 -0400 Subject: [PATCH] release(cli): 0.4.16 (#7151) --- libs/cli/langgraph_cli/__init__.py | 2 +- libs/cli/langgraph_cli/cli.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/cli/langgraph_cli/__init__.py b/libs/cli/langgraph_cli/__init__.py index 5a4bb1d41..6ff6db180 100644 --- a/libs/cli/langgraph_cli/__init__.py +++ b/libs/cli/langgraph_cli/__init__.py @@ -1 +1 @@ -__version__ = "0.4.15" +__version__ = "0.4.16" diff --git a/libs/cli/langgraph_cli/cli.py b/libs/cli/langgraph_cli/cli.py index 0ecd421cd..797dd0e06 100644 --- a/libs/cli/langgraph_cli/cli.py +++ b/libs/cli/langgraph_cli/cli.py @@ -801,7 +801,7 @@ def _deploy( deployment_type: str, name: str | None, image_name: str | None, - image_tag: str, + tag: str, base_image: str | None, install_command: str | None, build_command: str | None, @@ -982,7 +982,7 @@ def _deploy( normalized_registry = normalized_registry.split("//", 1)[1] repo_seed = image_name or name or config.parent.name repo_name = _normalize_image_name(repo_seed) - tag_value = _normalize_image_tag(image_tag) + tag_value = _normalize_image_tag(tag) remote_image = f"{normalized_registry}/{repo_name}:{tag_value}" registry_host = normalized_registry.split("/")[0]