Skip to content

Commit bc4aa6f

Browse files
committed
release 0.3.0
1 parent a0d1015 commit bc4aa6f

13 files changed

Lines changed: 564 additions & 535 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.2.8 -t katanemo/archgw:latest
27+
cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.0 -t katanemo/archgw:latest
2828
2929
- name: start archgw
3030
env:

.github/workflows/e2e_test_demos.yml

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

2222
- name: build arch docker image
2323
run: |
24-
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.2.8
24+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.0
2525
2626
- name: install poetry
2727
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.2.8
27+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.0
2828
2929
- name: validate arch config
3030
run: |

README.md

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

8787
### Build AI Agent 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.2.8
22+
pip install archgw==0.3.0
2323
```
2424

2525
## Uninstall Instructions: archgw CLI

arch/tools/cli/consts.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@
99
SERVICE_NAME_MODEL_SERVER = "model_server"
1010
SERVICE_ALL = "all"
1111
MODEL_SERVER_LOG_FILE = "~/archgw_logs/modelserver.log"
12-
ACCESS_LOG_FILES = "~/archgw_logs/access*"
1312
ARCHGW_DOCKER_NAME = "archgw"
14-
ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.2.8")
13+
ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.0")

arch/tools/poetry.lock

Lines changed: 127 additions & 124 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.2.8"
3+
version = "0.3.0"
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.2.8"
13+
archgw_modelserver = "^0.3.0"
1414
click = "^8.1.7"
1515
jinja2 = "^3.1.4"
1616
jsonschema = "^4.23.0"

build_filter_image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.2.8
1+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.0

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
project = "Arch Docs"
1616
copyright = "2025, Katanemo Labs, Inc"
1717
author = "Katanemo Labs, Inc"
18-
release = " v0.2.8"
18+
release = " v0.3.0"
1919

2020
# -- General configuration ---------------------------------------------------
2121
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

0 commit comments

Comments
 (0)