Skip to content

Commit 9aedab0

Browse files
committed
release: 0.0.6
1 parent 1fd7149 commit 9aedab0

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
# Version 0.0.6
4+
5+
No functional changes.
6+
7+
# Version 0.0.5
8+
9+
- Fixed an issue where the proc macros were not exposed directly from `orch`
10+
311
# Version 0.0.4
412

513
No functional changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Alternatively, add `orch as a dependency to your `Cargo.toml` file:
2020

2121
```toml
2222
[dependencies]
23-
orch = "0.0.5"
23+
orch = "0.0.6"
2424
```
2525

2626
# Basic Usage

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
> Alternatively, rename all versions that are not in [CHANGELOG.md](CHANGELOG.md) to the next version.
55
1. Update the versions in the `README.md` file
66
1. Update [CHANGELOG.md](CHANGELOG.md)
7-
1. Push the changes to the `main` branch with a tag (e.g., `0.0.5`)
7+
1. Push the changes to the `main` branch with a tag (e.g., `0.0.6`)

core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orch"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Language model orchestration library"
@@ -9,8 +9,8 @@ repository = "https://github.com/guywaldman/orch"
99
keywords = ["llm", "openai", "ollama", "rust"]
1010

1111
[dependencies]
12-
orch_response = { path = "../response", version = "0.0.5" }
13-
orch_response_derive = { path = "../response_derive", version = "0.0.5" }
12+
orch_response = { path = "../response", version = "0.0.6" }
13+
orch_response_derive = { path = "../response_derive", version = "0.0.6" }
1414
async-gen = "0.2.3"
1515
dotenv = "0.15.0"
1616
dyn-clone = "1.0.17"

response/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orch_response"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Models for orch Executor responses"

response_derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orch_response_derive"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Derive macros for orch Executor responses"
@@ -12,7 +12,7 @@ keywords = ["llm", "openai", "ollama", "rust"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
orch_response = { path = "../response", version = "0.0.5" }
15+
orch_response = { path = "../response", version = "0.0.6" }
1616
darling = "0.20.10"
1717
proc-macro2 = "1.0.86"
1818
quote = "1.0.36"

0 commit comments

Comments
 (0)