From 233ef69382e90363ffe6904c4524514825d371a9 Mon Sep 17 00:00:00 2001 From: Guy Waldman <6546430+guywaldman@users.noreply.github.com> Date: Sun, 21 Jul 2024 04:02:20 +0300 Subject: [PATCH] Update versions to 0.0.4 --- README.md | 2 +- core/Cargo.toml | 6 +++--- response/Cargo.toml | 2 +- response_derive/Cargo.toml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5391b7a..e96a909 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.3" +orch = "0.0.4" ``` # Basic Usage diff --git a/core/Cargo.toml b/core/Cargo.toml index 4f69b46..2951b31 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orch" -version = "0.0.3" +version = "0.0.4" 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.3" } -orch_response_derive = { path = "../response_derive", version = "0.0.3" } +orch_response = { path = "../response", version = "0.0.4" } +orch_response_derive = { path = "../response_derive", version = "0.0.4" } 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 538e936..aee4406 100644 --- a/response/Cargo.toml +++ b/response/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orch_response" -version = "0.0.3" +version = "0.0.4" edition = "2021" license = "MIT" description = "Models for orch Executor responses" diff --git a/response_derive/Cargo.toml b/response_derive/Cargo.toml index 594b330..2725519 100644 --- a/response_derive/Cargo.toml +++ b/response_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orch_response_derive" -version = "0.0.3" +version = "0.0.4" 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.3" } +orch_response = { path = "../response", version = "0.0.4" } darling = "0.20.10" proc-macro2 = "1.0.86" quote = "1.0.36"