diff --git a/CHANGELOG.md b/CHANGELOG.md index 10d35b8..00b841d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 2b0bc68..97ea307 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.5" +orch = "0.0.6" ``` # Basic Usage diff --git a/RELEASE.md b/RELEASE.md index 1bba74c..8dbe0fe 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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`) diff --git a/core/Cargo.toml b/core/Cargo.toml index 592c7bc..5fb8117 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orch" -version = "0.0.5" +version = "0.0.6" 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.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" diff --git a/response/Cargo.toml b/response/Cargo.toml index 91e7d3c..4263f56 100644 --- a/response/Cargo.toml +++ b/response/Cargo.toml @@ -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" diff --git a/response_derive/Cargo.toml b/response_derive/Cargo.toml index b8df2aa..62deffd 100644 --- a/response_derive/Cargo.toml +++ b/response_derive/Cargo.toml @@ -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" @@ -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"