From 8b4abfdf7db0cd03cdfb8d313fc5569ee91d8563 Mon Sep 17 00:00:00 2001 From: whit3rabbit Date: Sun, 7 Jun 2026 15:38:56 -0500 Subject: [PATCH] chore: bump version to 0.9.7 --- 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 5971356..a9d2a25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -46,7 +46,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "anyllm_batch_engine" -version = "0.9.6" +version = "0.9.7" dependencies = [ "anyllm_translate", "async-trait", @@ -68,7 +68,7 @@ dependencies = [ [[package]] name = "anyllm_client" -version = "0.9.6" +version = "0.9.7" dependencies = [ "anyllm_translate", "bytes", @@ -87,7 +87,7 @@ dependencies = [ [[package]] name = "anyllm_providers" -version = "0.9.6" +version = "0.9.7" dependencies = [ "reqwest", "serde", @@ -97,7 +97,7 @@ dependencies = [ [[package]] name = "anyllm_proxy" -version = "0.9.6" +version = "0.9.7" dependencies = [ "anyllm_batch_engine", "anyllm_client", @@ -150,7 +150,7 @@ dependencies = [ [[package]] name = "anyllm_translate" -version = "0.9.6" +version = "0.9.7" dependencies = [ "axum 0.8.8", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 8720024..36d7003 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.6" +version = "0.9.7" 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 4baca78..ebfdce3 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.6" } +anyllm_translate = { path = "../translator", version = "0.9.7" } 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 9b9c8eb..13e5286 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.6" +version = "0.9.7" 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.6" } +anyllm_translate = { path = "../translator", version = "0.9.7" } 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 4972151..e098a4c 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.6" } -anyllm_client = { path = "../client", version = "0.9.6" } -anyllm_batch_engine = { path = "../batch_engine", version = "0.9.6" } -anyllm_providers = { path = "../providers", version = "0.9.6", features = ["runtime-catalog"] } +anyllm_translate = { path = "../translator", version = "0.9.7" } +anyllm_client = { path = "../client", version = "0.9.7" } +anyllm_batch_engine = { path = "../batch_engine", version = "0.9.7" } +anyllm_providers = { path = "../providers", version = "0.9.7", features = ["runtime-catalog"] } 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"] }