Skip to content

Commit 2cf3cbf

Browse files
chore: release (#676)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent cb33dbf commit 2cf3cbf

File tree

31 files changed

+193
-80
lines changed

31 files changed

+193
-80
lines changed

Cargo.lock

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

88
## [Unreleased]
99

10+
## [0.2.7](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.2.6...rig-bedrock-v0.2.7) - 2025-08-19
11+
12+
### Added
13+
14+
- *(rig-865)* multi turn streaming ([#712](https://github.com/0xPlaygrounds/rig/pull/712))
15+
- video input for gemini ([#690](https://github.com/0xPlaygrounds/rig/pull/690))
16+
1017
## [0.2.6](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.2.5...rig-bedrock-v0.2.6) - 2025-08-05
1118

1219
### Other

rig-bedrock/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "rig-bedrock"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
edition = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
77
description = "AWS Bedrock model provider for Rig integration."
88

99
[dependencies]
10-
rig-core = { path = "../rig-core", version = "0.17.1", features = ["image"] }
11-
rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.4" }
10+
rig-core = { path = "../rig-core", version = "0.18.0", features = ["image"] }
11+
rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.5" }
1212
serde = { workspace = true, features = ["derive"] }
1313
serde_json = { workspace = true }
1414
schemars = { workspace = true }

rig-core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.18.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.17.1...rig-core-v0.18.0) - 2025-08-19
11+
12+
### Added
13+
14+
- *(rig-865)* multi turn streaming ([#712](https://github.com/0xPlaygrounds/rig/pull/712))
15+
- implement Tool for Agent ([#704](https://github.com/0xPlaygrounds/rig/pull/704))
16+
- Add capability to add custom logic while running prompts ([#632](https://github.com/0xPlaygrounds/rig/pull/632))
17+
- *(rig-863)* add retries to extractor tool ([#685](https://github.com/0xPlaygrounds/rig/pull/685))
18+
- *(gemini)* Accept plain-text tool result ([#686](https://github.com/0xPlaygrounds/rig/pull/686))
19+
- video input for gemini ([#690](https://github.com/0xPlaygrounds/rig/pull/690))
20+
- added get_tool_definitions ([#666](https://github.com/0xPlaygrounds/rig/pull/666))
21+
22+
### Fixed
23+
24+
- *(rig-886)* only GenerationConfig can be passed into additional_params ([#707](https://github.com/0xPlaygrounds/rig/pull/707))
25+
- deepseek streaming endpoint ([#687](https://github.com/0xPlaygrounds/rig/pull/687))
26+
- *(rig-864)* missing id from OpenAI Responses API for reasoning items ([#681](https://github.com/0xPlaygrounds/rig/pull/681))
27+
28+
### Other
29+
30+
- *(rig-883)* fully deprecate mcp feature flag ([#714](https://github.com/0xPlaygrounds/rig/pull/714))
31+
- *(gemini)* Refactor parts to Vec instead of OneOrMany in Gemini ([#691](https://github.com/0xPlaygrounds/rig/pull/691))
32+
- consistent visibility modifiers in openai ([#694](https://github.com/0xPlaygrounds/rig/pull/694))
33+
- Update rmcp to version 0.5 ([#682](https://github.com/0xPlaygrounds/rig/pull/682))
34+
- Fix SSE parsing in Gemini provider ([#683](https://github.com/0xPlaygrounds/rig/pull/683))
35+
- *(rig-862)* remove sync bound from fn call() in tool trait ([#678](https://github.com/0xPlaygrounds/rig/pull/678))
36+
- 删除gemini providers中重复的方法 ([#675](https://github.com/0xPlaygrounds/rig/pull/675))
37+
1038
## [0.17.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.17.0...rig-core-v0.17.1) - 2025-08-05
1139

1240
### Other

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.17.1"
3+
version = "0.18.0"
44
edition = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -29,7 +29,7 @@ ordered-float = { workspace = true }
2929
quick-xml = { workspace = true, optional = true }
3030
rayon = { workspace = true, optional = true }
3131
reqwest = { workspace = true, features = ["json", "stream", "multipart"] }
32-
rig-derive = { version = "0.1.4", path = "rig-core-derive", optional = true }
32+
rig-derive = { version = "0.1.5", path = "rig-core-derive", optional = true }
3333
schemars = { workspace = true }
3434
serde = { workspace = true, features = ["derive"] }
3535
serde_json = { workspace = true }

0 commit comments

Comments
 (0)