Skip to content

Commit 10f66ae

Browse files
chore: release (#1009)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0bfa57b commit 10f66ae

File tree

33 files changed

+178
-63
lines changed

33 files changed

+178
-63
lines changed

Cargo.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rig-bedrock/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.6](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.3.5...rig-bedrock-v0.3.6) - 2025-11-10
11+
12+
### Added
13+
14+
- *(providers)* Emit tool call deltas ([#1020](https://github.com/0xPlaygrounds/rig/pull/1020))
15+
1016
## [0.3.5](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.3.4...rig-bedrock-v0.3.5) - 2025-10-28
1117

1218
### Other

rig-bedrock/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-bedrock"
3-
version = "0.3.5"
3+
version = "0.3.6"
44
edition = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -12,8 +12,8 @@ aws-config = { workspace = true, features = ["behavior-version-latest"] }
1212
aws-sdk-bedrockruntime = { workspace = true }
1313
aws-smithy-types = { workspace = true }
1414
base64 = { workspace = true }
15-
rig-core = { path = "../rig-core", version = "0.23.1", default-features = false, features = ["image"] }
16-
rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.7" }
15+
rig-core = { path = "../rig-core", version = "0.24.0", default-features = false, features = ["image"] }
16+
rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.8" }
1717
schemars = { workspace = true }
1818
serde = { workspace = true, features = ["derive"] }
1919
serde_json = { workspace = true }

rig-core/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.24.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.23.1...rig-core-v0.24.0) - 2025-11-10
11+
12+
### Added
13+
14+
- *(rig-1024)* yield tool calls and results from multi-step stream prompt ([#1023](https://github.com/0xPlaygrounds/rig/pull/1023))
15+
- *(providers)* Emit tool call deltas ([#1020](https://github.com/0xPlaygrounds/rig/pull/1020))
16+
- export rig tool macro from main crate ([#1016](https://github.com/0xPlaygrounds/rig/pull/1016))
17+
18+
### Fixed
19+
20+
- *(rig-1035)* export StreamingPromptHook ([#1039](https://github.com/0xPlaygrounds/rig/pull/1039))
21+
- Gemini responses lacking content ([#1030](https://github.com/0xPlaygrounds/rig/pull/1030))
22+
- *(rig-1029)* Reasoning not handled properly for agent stream prompt ([#1024](https://github.com/0xPlaygrounds/rig/pull/1024))
23+
- *(openai-responses)* add `#[serde(default)]` for missing `tools` field ([#1021](https://github.com/0xPlaygrounds/rig/pull/1021))
24+
- *(rig-1027)* allow any error type to be used for rig tool macro ([#1017](https://github.com/0xPlaygrounds/rig/pull/1017))
25+
26+
### Other
27+
28+
- make CompletionModel default type to reqwest::Client ([#1013](https://github.com/0xPlaygrounds/rig/pull/1013))
29+
- *(deps)* upgrade rmcp dependency ([#1008](https://github.com/0xPlaygrounds/rig/pull/1008))
30+
1031
## [0.23.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.23.0...rig-core-v0.23.1) - 2025-10-28
1132

1233
### Fixed

rig-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-core"
3-
version = "0.23.1"
3+
version = "0.24.0"
44
edition = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -30,7 +30,7 @@ ordered-float = { workspace = true }
3030
quick-xml = { workspace = true, optional = true }
3131
rayon = { workspace = true, optional = true }
3232
reqwest = { workspace = true, features = ["json", "stream", "multipart"] }
33-
rig-derive = { version = "0.1.7", path = "rig-core-derive", optional = true }
33+
rig-derive = { version = "0.1.8", path = "rig-core-derive", optional = true }
3434
schemars = { workspace = true }
3535
serde = { workspace = true, features = ["derive"] }
3636
serde_json = { workspace = true }

rig-core/rig-core-derive/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.8](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.7...rig-derive-v0.1.8) - 2025-11-10
11+
12+
### Fixed
13+
14+
- *(rig-1027)* allow any error type to be used for rig tool macro ([#1017](https://github.com/0xPlaygrounds/rig/pull/1017))
15+
1016
## [0.1.7](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.6...rig-derive-v0.1.7) - 2025-10-27
1117

1218
### Added

rig-core/rig-core-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-derive"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = { workspace = true }
55
license = "MIT"
66
description = "Internal crate that implements Rig derive macros."

rig-eternalai/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.12](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.3.11...rig-eternalai-v0.3.12) - 2025-11-10
11+
12+
### Other
13+
14+
- updated the following local packages: rig-core
15+
1016
## [0.3.11](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.3.10...rig-eternalai-v0.3.11) - 2025-10-28
1117

1218
### Other

rig-eternalai/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "rig-eternalai"
3-
version = "0.3.11"
3+
version = "0.3.12"
44
edition = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
77
description = "EternalAI model provider Rig integration."
88
repository = "https://github.com/0xPlaygrounds/rig"
99

1010
[dependencies]
11-
rig-core = { path = "../rig-core", version = "0.23.1", default-features = false }
11+
rig-core = { path = "../rig-core", version = "0.24.0", default-features = false }
1212
ethers = { workspace = true }
1313
reqwest = { workspace = true, features = ["json"] }
1414
serde = { workspace = true, features = ["derive"] }

rig-fastembed/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.16](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.2.15...rig-fastembed-v0.2.16) - 2025-11-10
11+
12+
### Other
13+
14+
- updated the following local packages: rig-core
15+
1016
## [0.2.15](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.2.14...rig-fastembed-v0.2.15) - 2025-10-28
1117

1218
### Other

0 commit comments

Comments
 (0)