diff --git a/.github/workflows/e2e_archgw.yml b/.github/workflows/e2e_archgw.yml
index a59954c9..b796fbbf 100644
--- a/.github/workflows/e2e_archgw.yml
+++ b/.github/workflows/e2e_archgw.yml
@@ -30,7 +30,7 @@ jobs:
- name: build arch docker image
run: |
- cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.18 -t katanemo/archgw:latest
+ cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.20 -t katanemo/archgw:latest
- name: start archgw
env:
diff --git a/.github/workflows/e2e_test_currency_convert.yml b/.github/workflows/e2e_test_currency_convert.yml
index 93377f3c..64c01c3b 100644
--- a/.github/workflows/e2e_test_currency_convert.yml
+++ b/.github/workflows/e2e_test_currency_convert.yml
@@ -24,7 +24,7 @@ jobs:
- name: build arch docker image
run: |
- docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.18
+ docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.20
- name: install poetry
run: |
diff --git a/.github/workflows/e2e_test_preference_based_routing.yml b/.github/workflows/e2e_test_preference_based_routing.yml
index 6c3652f7..dcf5b036 100644
--- a/.github/workflows/e2e_test_preference_based_routing.yml
+++ b/.github/workflows/e2e_test_preference_based_routing.yml
@@ -24,7 +24,7 @@ jobs:
- name: build arch docker image
run: |
- docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.18
+ docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.20
- name: install poetry
run: |
diff --git a/.github/workflows/validate_arch_config.yml b/.github/workflows/validate_arch_config.yml
index 08bf9045..33d37cac 100644
--- a/.github/workflows/validate_arch_config.yml
+++ b/.github/workflows/validate_arch_config.yml
@@ -24,7 +24,7 @@ jobs:
- name: build arch docker image
run: |
- docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.18
+ docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.20
- name: validate arch config
run: |
diff --git a/README.md b/README.md
index 6f3217fa..a8684d68 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ _Arch is a models-native (edge and service) proxy server for agents._
# About The Latest Release:
-[0.3.18] [Preference-aware multi LLM routing for Claude Code 2.0](demos/use_cases/claude_code_router/README.md)
+[0.3.20] [Preference-aware multi LLM routing for Claude Code 2.0](demos/use_cases/claude_code_router/README.md)
# Overview
@@ -87,7 +87,7 @@ Arch's CLI allows you to manage and interact with the Arch gateway efficiently.
```console
$ python3.12 -m venv venv
$ source venv/bin/activate # On Windows, use: venv\Scripts\activate
-$ pip install archgw==0.3.18
+$ pip install archgw==0.3.20
```
### Use Arch as a LLM Router
@@ -276,7 +276,7 @@ endpoints:
```sh
$ archgw up arch_config.yaml
-2024-12-05 16:56:27,979 - cli.main - INFO - Starting archgw cli version: 0.3.18
+2024-12-05 16:56:27,979 - cli.main - INFO - Starting archgw cli version: 0.3.20
2024-12-05 16:56:28,485 - cli.utils - INFO - Schema validation successful!
2024-12-05 16:56:28,485 - cli.main - INFO - Starting arch model server and arch gateway
2024-12-05 16:56:51,647 - cli.core - INFO - Container is healthy!
diff --git a/arch/tools/README.md b/arch/tools/README.md
index 29624295..c963dd6f 100644
--- a/arch/tools/README.md
+++ b/arch/tools/README.md
@@ -19,7 +19,7 @@ source venv/bin/activate
### Step 3: Run the build script
```bash
-pip install archgw==0.3.18
+pip install archgw==0.3.20
```
## Uninstall Instructions: archgw CLI
diff --git a/arch/tools/cli/consts.py b/arch/tools/cli/consts.py
index 6b5c7447..876905de 100644
--- a/arch/tools/cli/consts.py
+++ b/arch/tools/cli/consts.py
@@ -2,4 +2,4 @@ import os
SERVICE_NAME_ARCHGW = "archgw"
ARCHGW_DOCKER_NAME = "archgw"
-ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.18")
+ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.20")
diff --git a/arch/tools/pyproject.toml b/arch/tools/pyproject.toml
index 28b9bb9d..7cd7a428 100644
--- a/arch/tools/pyproject.toml
+++ b/arch/tools/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "archgw"
-version = "0.3.18"
+version = "0.3.20"
description = "Python-based CLI tool to manage Arch Gateway."
authors = ["Katanemo Labs, Inc."]
readme = "README.md"
diff --git a/demos/samples_java/weather_forcecast_service/.classpath b/demos/samples_java/weather_forcecast_service/.classpath
index 39abf1c5..e16ec965 100644
--- a/demos/samples_java/weather_forcecast_service/.classpath
+++ b/demos/samples_java/weather_forcecast_service/.classpath
@@ -9,6 +9,7 @@
+
@@ -36,6 +37,13 @@
+
+
+
+
+
+
+
diff --git a/demos/use_cases/model_choice_with_test_harness/pyproject.toml b/demos/use_cases/model_choice_with_test_harness/pyproject.toml
index d2a97be1..ac2d6e21 100644
--- a/demos/use_cases/model_choice_with_test_harness/pyproject.toml
+++ b/demos/use_cases/model_choice_with_test_harness/pyproject.toml
@@ -12,7 +12,7 @@ python = ">=3.10,<3.13.3"
pydantic = "^2.0"
openai = "^1.0"
pyyaml = "^6.0"
-archgw ="^0.3.18"
+archgw ="^0.3.20"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
diff --git a/demos/use_cases/preference_based_routing/README.md b/demos/use_cases/preference_based_routing/README.md
index 9446f85a..6ca4034c 100644
--- a/demos/use_cases/preference_based_routing/README.md
+++ b/demos/use_cases/preference_based_routing/README.md
@@ -14,9 +14,9 @@ Make sure your machine is up to date with [latest version of archgw]([url](https
2. start archgw in the foreground
```bash
(venv) $ archgw up --service archgw --foreground
-2025-05-30 18:00:09,953 - cli.main - INFO - Starting archgw cli version: 0.3.18
+2025-05-30 18:00:09,953 - cli.main - INFO - Starting archgw cli version: 0.3.20
2025-05-30 18:00:09,953 - cli.main - INFO - Validating /Users/adilhafeez/src/intelligent-prompt-gateway/demos/use_cases/preference_based_routing/arch_config.yaml
-2025-05-30 18:00:10,422 - cli.core - INFO - Starting arch gateway, image name: archgw, tag: katanemo/archgw:0.3.18
+2025-05-30 18:00:10,422 - cli.core - INFO - Starting arch gateway, image name: archgw, tag: katanemo/archgw:0.3.20
2025-05-30 18:00:10,662 - cli.core - INFO - archgw status: running, health status: starting
2025-05-30 18:00:11,712 - cli.core - INFO - archgw status: running, health status: starting
2025-05-30 18:00:12,761 - cli.core - INFO - archgw is running and is healthy!
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 81d62da7..241c8448 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -15,7 +15,7 @@ from sphinxawesome_theme.postprocess import Icons
project = "Arch Docs"
copyright = "2025, Katanemo Labs, Inc"
author = "Katanemo Labs, Inc"
-release = " v0.3.18"
+release = " v0.3.20"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
diff --git a/docs/source/get_started/quickstart.rst b/docs/source/get_started/quickstart.rst
index 1f5f82ee..f0a39fbf 100644
--- a/docs/source/get_started/quickstart.rst
+++ b/docs/source/get_started/quickstart.rst
@@ -25,7 +25,7 @@ Arch's CLI allows you to manage and interact with the Arch gateway efficiently.
$ python -m venv venv
$ source venv/bin/activate # On Windows, use: venv\Scripts\activate
- $ pip install archgw==0.3.18
+ $ pip install archgw==0.3.20
Build AI Agent with Arch Gateway
diff --git a/docs/source/resources/deployment.rst b/docs/source/resources/deployment.rst
index 6f60df9a..ba2af2eb 100644
--- a/docs/source/resources/deployment.rst
+++ b/docs/source/resources/deployment.rst
@@ -25,7 +25,7 @@ Create a ``docker-compose.yml`` file with the following configuration:
# docker-compose.yml
services:
archgw:
- image: katanemo/archgw:0.3.18
+ image: katanemo/archgw:0.3.20
container_name: archgw
ports:
- "10000:10000" # ingress (client -> arch)