chore: bump version to 0.9.6

This commit is contained in:
whit3rabbit
2026-05-23 16:39:43 -05:00
parent f78c925b6a
commit 45e18c83d2
5 changed files with 13 additions and 13 deletions
Generated
+5 -5
View File
@@ -46,7 +46,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
[[package]]
name = "anyllm_batch_engine"
version = "0.9.5"
version = "0.9.6"
dependencies = [
"anyllm_translate",
"async-trait",
@@ -68,7 +68,7 @@ dependencies = [
[[package]]
name = "anyllm_client"
version = "0.9.5"
version = "0.9.6"
dependencies = [
"anyllm_translate",
"bytes",
@@ -87,14 +87,14 @@ dependencies = [
[[package]]
name = "anyllm_providers"
version = "0.9.5"
version = "0.9.6"
dependencies = [
"serde",
]
[[package]]
name = "anyllm_proxy"
version = "0.9.5"
version = "0.9.6"
dependencies = [
"anyllm_batch_engine",
"anyllm_client",
@@ -147,7 +147,7 @@ dependencies = [
[[package]]
name = "anyllm_translate"
version = "0.9.5"
version = "0.9.6"
dependencies = [
"axum 0.8.8",
"bytes",
+1 -1
View File
@@ -3,7 +3,7 @@ members = ["crates/translator", "crates/client", "crates/batch_engine", "crates/
resolver = "2"
[workspace.package]
version = "0.9.5"
version = "0.9.6"
edition = "2021"
license = "MIT"
repository = "https://github.com/whit3rabbit/anyllm-proxy"
+1 -1
View File
@@ -7,7 +7,7 @@ license.workspace = true
repository.workspace = true
[dependencies]
anyllm_translate = { path = "../translator", version = "0.9.5" }
anyllm_translate = { path = "../translator", version = "0.9.6" }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
+2 -2
View File
@@ -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.5"
version = "0.9.6"
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.5" }
anyllm_translate = { path = "../translator", version = "0.9.6" }
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"] }
+4 -4
View File
@@ -7,10 +7,10 @@ license.workspace = true
repository.workspace = true
[dependencies]
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" }
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" }
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"] }