Skip to content

Commit 14f19f0

Browse files
authored
release 0.3.4 (#525)
* release 0.3.4 * update lock file
1 parent a7fddf3 commit 14f19f0

14 files changed

Lines changed: 32 additions & 32 deletions

File tree

.github/workflows/e2e_archgw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: build arch docker image
2626
run: |
27-
cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.3 -t katanemo/archgw:latest
27+
cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.4 -t katanemo/archgw:latest
2828
2929
- name: start archgw
3030
env:

.github/workflows/e2e_test_currency_convert.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: build arch docker image
2626
run: |
27-
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.3
27+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.4
2828
2929
- name: install poetry
3030
run: |

.github/workflows/e2e_test_preference_based_routing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: build arch docker image
2626
run: |
27-
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.3
27+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.4
2828
2929
- name: install poetry
3030
run: |

.github/workflows/validate_arch_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: build arch docker image
2626
run: |
27-
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.3
27+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.4
2828
2929
- name: validate arch config
3030
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Arch's CLI allows you to manage and interact with the Arch gateway efficiently.
8282
```console
8383
$ python -m venv venv
8484
$ source venv/bin/activate # On Windows, use: venv\Scripts\activate
85-
$ pip install archgw==0.3.3
85+
$ pip install archgw==0.3.4
8686
```
8787

8888
### Build Agentic Apps with Arch Gateway

arch/tools/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ source venv/bin/activate
1919

2020
### Step 3: Run the build script
2121
```bash
22-
pip install archgw==0.3.3
22+
pip install archgw==0.3.4
2323
```
2424

2525
## Uninstall Instructions: archgw CLI

arch/tools/cli/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
SERVICE_ALL = "all"
1111
MODEL_SERVER_LOG_FILE = "~/archgw_logs/modelserver.log"
1212
ARCHGW_DOCKER_NAME = "archgw"
13-
ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.3")
13+
ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.4")

arch/tools/poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

arch/tools/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "archgw"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
description = "Python-based CLI tool to manage Arch Gateway."
55
authors = ["Katanemo Labs, Inc."]
66
packages = [
@@ -10,7 +10,7 @@ readme = "README.md"
1010

1111
[tool.poetry.dependencies]
1212
python = "^3.10"
13-
archgw_modelserver = "^0.3.3"
13+
archgw_modelserver = "^0.3.4"
1414
click = "^8.1.7"
1515
jinja2 = "^3.1.4"
1616
jsonschema = "^4.23.0"

demos/use_cases/preference_based_routing/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Make sure your machine is up to date with [latest version of archgw]([url](https
1414
2. start archgw in the foreground
1515
```bash
1616
(venv) $ archgw up --service archgw --foreground
17-
2025-05-30 18:00:09,953 - cli.main - INFO - Starting archgw cli version: 0.3.3
17+
2025-05-30 18:00:09,953 - cli.main - INFO - Starting archgw cli version: 0.3.4
1818
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
19-
2025-05-30 18:00:10,422 - cli.core - INFO - Starting arch gateway, image name: archgw, tag: katanemo/archgw:0.3.3
19+
2025-05-30 18:00:10,422 - cli.core - INFO - Starting arch gateway, image name: archgw, tag: katanemo/archgw:0.3.4
2020
2025-05-30 18:00:10,662 - cli.core - INFO - archgw status: running, health status: starting
2121
2025-05-30 18:00:11,712 - cli.core - INFO - archgw status: running, health status: starting
2222
2025-05-30 18:00:12,761 - cli.core - INFO - archgw is running and is healthy!

0 commit comments

Comments
 (0)