Skip to content

Commit 185510b

Browse files
committed
Release 0.7.5
1 parent 5a78608 commit 185510b

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

openclaw-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anjieyang/uncommon-route",
3-
"version": "0.7.4",
3+
"version": "0.7.5",
44
"description": "OpenClaw plugin for UncommonRoute, the local LLM router that cuts premium-model spend",
55
"type": "module",
66
"main": "src/index.js",

openclaw-plugin/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import { spawn, execSync } from "node:child_process";
1717
import { setTimeout as sleep } from "node:timers/promises";
1818

19-
const VERSION = "0.7.4";
19+
const VERSION = "0.7.5";
2020
const DEFAULT_PORT = 8403;
2121
const DEFAULT_UPSTREAM = "";
2222
const HEALTH_TIMEOUT_MS = 15_000;

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uncommon-route"
3-
version = "0.7.4"
3+
version = "0.7.5"
44
description = "Local LLM router that cuts premium-model spend with adaptive 3-tier routing, OpenAI + Anthropic compatible"
55
requires-python = ">=3.11"
66
license = "MIT"

uncommon_route/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from uncommon_route.router.classifier import classify
3939
from uncommon_route.router.structural import extract_structural_features, extract_unicode_block_features
4040

41-
VERSION = "0.7.4"
41+
VERSION = "0.7.5"
4242
_DATA_DIR = data_dir()
4343
_PID_FILE = _DATA_DIR / "serve.pid"
4444
_LOG_FILE = _DATA_DIR / "serve.log"

uncommon_route/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
logger = logging.getLogger("uncommon-route")
120120
_debug_log = logging.getLogger("uncommon_route.debug_routing")
121121

122-
VERSION = "0.7.4"
122+
VERSION = "0.7.5"
123123
DEFAULT_UPSTREAM = ""
124124
DEFAULT_PORT = int(os.environ.get("UNCOMMON_ROUTE_PORT", "8403"))
125125

uncommon_route/support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def _package_version() -> str:
4646

4747
return version("uncommon-route")
4848
except Exception:
49-
return "0.7.4"
49+
return "0.7.5"
5050

5151

5252
def _feedback_buffer_summary(root: Path) -> dict[str, Any]:

0 commit comments

Comments
 (0)