Skip to content

Commit

Permalink
Release: 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
guywaldman committed Jul 21, 2024
1 parent 7673f83 commit 4b2cd77
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orch"
version = "0.0.9"
version = "0.0.10"
edition = "2021"
license = "MIT"
description = "Language model orchestration library"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion response/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions response_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit 4b2cd77

Please sign in to comment.