Skip to content

Commit 128059e

Browse files
authored
release 0.4.18 (#878)
1 parent 8dedf0b commit 128059e

11 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ jobs:
133133
load: true
134134
tags: |
135135
${{ env.PLANO_DOCKER_IMAGE }}
136-
${{ env.DOCKER_IMAGE }}:0.4.17
136+
${{ env.DOCKER_IMAGE }}:0.4.18
137137
${{ env.DOCKER_IMAGE }}:latest
138138
cache-from: type=gha
139139
cache-to: type=gha,mode=max
140140

141141
- name: Save image as artifact
142-
run: docker save ${{ env.PLANO_DOCKER_IMAGE }} ${{ env.DOCKER_IMAGE }}:0.4.17 ${{ env.DOCKER_IMAGE }}:latest -o /tmp/plano-image.tar
142+
run: docker save ${{ env.PLANO_DOCKER_IMAGE }} ${{ env.DOCKER_IMAGE }}:0.4.18 ${{ env.DOCKER_IMAGE }}:latest -o /tmp/plano-image.tar
143143

144144
- name: Upload image artifact
145145
uses: actions/upload-artifact@v6

apps/www/src/components/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function Hero() {
2424
>
2525
<div className="inline-flex flex-wrap items-center gap-1.5 sm:gap-2 px-3 sm:px-4 py-1 rounded-full bg-[rgba(185,191,255,0.4)] border border-[var(--secondary)] shadow backdrop-blur hover:bg-[rgba(185,191,255,0.6)] transition-colors cursor-pointer">
2626
<span className="text-xs sm:text-sm font-medium text-black/65">
27-
v0.4.17
27+
v0.4.18
2828
</span>
2929
<span className="text-xs sm:text-sm font-medium text-black ">
3030

build_filter_image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docker build -f Dockerfile . -t katanemo/plano -t katanemo/plano:0.4.17
1+
docker build -f Dockerfile . -t katanemo/plano -t katanemo/plano:0.4.18

cli/planoai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Plano CLI - Intelligent Prompt Gateway."""
22

3-
__version__ = "0.4.17"
3+
__version__ = "0.4.18"

cli/planoai/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
SERVICE_NAME_ARCHGW = "plano"
77
PLANO_DOCKER_NAME = "plano"
8-
PLANO_DOCKER_IMAGE = os.getenv("PLANO_DOCKER_IMAGE", "katanemo/plano:0.4.17")
8+
PLANO_DOCKER_IMAGE = os.getenv("PLANO_DOCKER_IMAGE", "katanemo/plano:0.4.18")
99
DEFAULT_OTEL_TRACING_GRPC_ENDPOINT = "http://localhost:4317"
1010

1111
# Native mode constants

cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "planoai"
3-
version = "0.4.17"
3+
version = "0.4.18"
44
description = "Python-based CLI tool to manage Plano."
55
authors = [{name = "Katanemo Labs, Inc."}]
66
readme = "README.md"

cli/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/llm_routing/preference_based_routing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This demo shows how you can use user preferences to route user prompts to approp
33

44
## How to start the demo
55

6-
Make sure you have Plano CLI installed (`pip install planoai` or `uv tool install planoai`).
6+
Make sure you have Plano CLI installed (`pip install planoai==0.4.18` or `uv tool install planoai==0.4.18`).
77

88
```bash
99
cd demos/llm_routing/preference_based_routing

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
project = "Plano Docs"
1818
copyright = "2026, Katanemo Labs, a DigitalOcean Company"
1919
author = "Katanemo Labs, Inc"
20-
release = " v0.4.17"
20+
release = " v0.4.18"
2121

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

docs/source/get_started/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ Plano's CLI allows you to manage and interact with the Plano efficiently. To ins
4343

4444
.. code-block:: console
4545
46-
$ uv tool install planoai==0.4.17
46+
$ uv tool install planoai==0.4.18
4747
4848
**Option 2: Install with pip (Traditional)**
4949

5050
.. code-block:: console
5151
5252
$ python -m venv venv
5353
$ source venv/bin/activate # On Windows, use: venv\Scripts\activate
54-
$ pip install planoai==0.4.17
54+
$ pip install planoai==0.4.18
5555
5656
5757
.. _llm_routing_quickstart:

0 commit comments

Comments
 (0)