From c68bb88f858510dd6b63c5333a6afd12e2ea40bc Mon Sep 17 00:00:00 2001 From: whit3rabbit Date: Sat, 23 May 2026 15:35:01 -0500 Subject: [PATCH] chore: bump version to 0.9.5 --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- crates/batch_engine/Cargo.toml | 2 +- crates/client/Cargo.toml | 4 ++-- crates/proxy/Cargo.toml | 8 ++++---- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22e9c79..bb0cad7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -46,7 +46,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "anyllm_batch_engine" -version = "0.9.4" +version = "0.9.5" dependencies = [ "anyllm_translate", "async-trait", @@ -68,7 +68,7 @@ dependencies = [ [[package]] name = "anyllm_client" -version = "0.9.4" +version = "0.9.5" dependencies = [ "anyllm_translate", "bytes", @@ -87,14 +87,14 @@ dependencies = [ [[package]] name = "anyllm_providers" -version = "0.9.4" +version = "0.9.5" dependencies = [ "serde", ] [[package]] name = "anyllm_proxy" -version = "0.9.4" +version = "0.9.5" dependencies = [ "anyllm_batch_engine", "anyllm_client", @@ -147,7 +147,7 @@ dependencies = [ [[package]] name = "anyllm_translate" -version = "0.9.4" +version = "0.9.5" dependencies = [ "axum 0.8.8", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 49c845c..2ebeb9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/translator", "crates/client", "crates/batch_engine", "crates/ resolver = "2" [workspace.package] -version = "0.9.4" +version = "0.9.5" edition = "2021" license = "MIT" repository = "https://github.com/whit3rabbit/anyllm-proxy" diff --git a/crates/batch_engine/Cargo.toml b/crates/batch_engine/Cargo.toml index eb28996..6370228 100644 --- a/crates/batch_engine/Cargo.toml +++ b/crates/batch_engine/Cargo.toml @@ -7,7 +7,7 @@ license.workspace = true repository.workspace = true [dependencies] -anyllm_translate = { path = "../translator", version = "0.9.4" } +anyllm_translate = { path = "../translator", version = "0.9.5" } rusqlite = { version = "0.32", features = ["bundled"] } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 055a390..a940ccc 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "anyllm_client" description = "Async HTTP client for Anthropic-to-OpenAI translation with retry, SSRF protection, and SSE streaming" -version = "0.9.4" +version = "0.9.5" edition.workspace = true license.workspace = true repository.workspace = true @@ -13,7 +13,7 @@ default = ["ssrf-protection"] ssrf-protection = [] [dependencies] -anyllm_translate = { path = "../translator", version = "0.9.4" } +anyllm_translate = { path = "../translator", version = "0.9.5" } reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "native-tls", "http2"] } tokio = { version = "1", features = ["rt", "sync", "time"] } serde = { version = "1", features = ["derive"] } diff --git a/crates/proxy/Cargo.toml b/crates/proxy/Cargo.toml index ac5e805..d4a99f4 100644 --- a/crates/proxy/Cargo.toml +++ b/crates/proxy/Cargo.toml @@ -7,10 +7,10 @@ license.workspace = true repository.workspace = true [dependencies] -anyllm_translate = { path = "../translator", version = "0.9.4" } -anyllm_client = { path = "../client", version = "0.9.4" } -anyllm_batch_engine = { path = "../batch_engine", version = "0.9.4" } -anyllm_providers = { path = "../providers", version = "0.9.4" } +anyllm_translate = { path = "../translator", version = "0.9.5" } +anyllm_client = { path = "../client", version = "0.9.5" } +anyllm_batch_engine = { path = "../batch_engine", version = "0.9.5" } +anyllm_providers = { path = "../providers", version = "0.9.5" } axum = { version = "0.8", features = ["ws", "multipart"] } tokio = { version = "1", features = ["full"] } reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "native-tls", "http2", "multipart"] }