Skip to content

Commit

Permalink
release: 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
guywaldman committed Jul 21, 2024
1 parent 1fd7149 commit 9aedab0
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

# Version 0.0.6

No functional changes.

# Version 0.0.5

- Fixed an issue where the proc macros were not exposed directly from `orch`

# Version 0.0.4

No functional changes.
Expand Down
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.5"
orch = "0.0.6"
```

# Basic Usage
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
> Alternatively, rename all versions that are not in [CHANGELOG.md](CHANGELOG.md) to the next version.
1. Update the versions in the `README.md` file
1. Update [CHANGELOG.md](CHANGELOG.md)
1. Push the changes to the `main` branch with a tag (e.g., `0.0.5`)
1. Push the changes to the `main` branch with a tag (e.g., `0.0.6`)
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.5"
version = "0.0.6"
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.5" }
orch_response_derive = { path = "../response_derive", version = "0.0.5" }
orch_response = { path = "../response", version = "0.0.6" }
orch_response_derive = { path = "../response_derive", version = "0.0.6" }
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.5"
version = "0.0.6"
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.5"
version = "0.0.6"
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.5" }
orch_response = { path = "../response", version = "0.0.6" }
darling = "0.20.10"
proc-macro2 = "1.0.86"
quote = "1.0.36"
Expand Down

0 comments on commit 9aedab0

Please sign in to comment.