From ddec4e3408a8c98ad20366daf4c054ae7dc3fce7 Mon Sep 17 00:00:00 2001 From: John Zhang Date: Thu, 12 Mar 2026 09:54:50 +0800 Subject: [PATCH] chore: bump version to 3.0.1 Co-Authored-By: Claude Sonnet 4.6 --- CLAUDE.md | 1 + cmd/root.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index 2f8f382..60967c6 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -146,6 +146,7 @@ Background (Light): `#f8fafc` → `#ffffff` → `#f1f5f9` → `#e2e8f0` - v1.5.3: Per-binary PID files to avoid multi-binary conflicts - v2.0.0: Rename to GoZen (opencc → zen), config migration from ~/.opencc/ to ~/.zen/, non-blocking version update check - v3.0.0: Usage tracking & budget control, provider health monitoring, smart load balancing, webhooks, context compression, middleware pipeline, agent infrastructure +- v3.0.1: Scenario routing redesign (protocol-agnostic normalization, per-scenario RoutePolicy), proxy transform correctness (streaming id/model/tool_calls, multi-format SSE usage tracking) ## Active Technologies - Go 1.21+ + `net/http`, `net/url`, `golang.org/x/net/proxy` (for SOCKS5) (001-provider-proxy) diff --git a/cmd/root.go b/cmd/root.go index 6805d3b..9352239 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -32,7 +32,7 @@ import ( // stdinReader is the reader used for interactive prompts. Tests can replace it. var stdinReader io.Reader = os.Stdin -var Version = "3.0.0" +var Version = "3.0.1" var updateChecker *update.Checker