diff --git a/README.md b/README.md index 5376b4b..8329696 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Alternatively, add `orch as a dependency to your `Cargo.toml` file: ```toml [dependencies] -orch = "0.0.9" +orch = "0.0.10" ``` # Basic Usage diff --git a/core/Cargo.toml b/core/Cargo.toml index fc4964a..8663a01 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orch" -version = "0.0.9" +version = "0.0.10" edition = "2021" license = "MIT" description = "Language model orchestration library" @@ -9,8 +9,8 @@ repository = "https://github.com/guywaldman/orch" keywords = ["llm", "openai", "ollama", "rust"] [dependencies] -orch_response = { path = "../response", version = "0.0.9" } -orch_response_derive = { path = "../response_derive", version = "0.0.9" } +orch_response = { path = "../response", version = "0.0.10" } +orch_response_derive = { path = "../response_derive", version = "0.0.10" } async-gen = "0.2.3" dotenv = "0.15.0" dyn-clone = "1.0.17" diff --git a/response/Cargo.toml b/response/Cargo.toml index 921433e..d09f9f3 100644 --- a/response/Cargo.toml +++ b/response/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orch_response" -version = "0.0.9" +version = "0.0.10" edition = "2021" license = "MIT" description = "Models for orch Executor responses" diff --git a/response_derive/Cargo.toml b/response_derive/Cargo.toml index 178ca62..f5df58f 100644 --- a/response_derive/Cargo.toml +++ b/response_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orch_response_derive" -version = "0.0.9" +version = "0.0.10" edition = "2021" license = "MIT" description = "Derive macros for orch Executor responses" @@ -12,7 +12,7 @@ keywords = ["llm", "openai", "ollama", "rust"] proc-macro = true [dependencies] -orch_response = { path = "../response", version = "0.0.9" } +orch_response = { path = "../response", version = "0.0.10" } darling = "0.20.10" proc-macro2 = "1.0.86" quote = "1.0.36"