Skip to content

Commit a8c5abc

Browse files
chore: release
1 parent 9160531 commit a8c5abc

File tree

32 files changed

+156
-46
lines changed

32 files changed

+156
-46
lines changed

Cargo.lock

Lines changed: 15 additions & 15 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.2.7](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.2.6...rig-bedrock-v0.2.7) - 2025-08-18
11+
12+
### Added
13+
14+
- video input for gemini ([#690](https://github.com/0xPlaygrounds/rig/pull/690))
15+
1016
## [0.2.6](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.2.5...rig-bedrock-v0.2.6) - 2025-08-05
1117

1218
### 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: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ 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-18
11+
12+
### Added
13+
14+
- implement Tool for Agent ([#704](https://github.com/0xPlaygrounds/rig/pull/704))
15+
- Add capability to add custom logic while running prompts ([#632](https://github.com/0xPlaygrounds/rig/pull/632))
16+
- *(rig-863)* add retries to extractor tool ([#685](https://github.com/0xPlaygrounds/rig/pull/685))
17+
- *(gemini)* Accept plain-text tool result ([#686](https://github.com/0xPlaygrounds/rig/pull/686))
18+
- video input for gemini ([#690](https://github.com/0xPlaygrounds/rig/pull/690))
19+
- added get_tool_definitions ([#666](https://github.com/0xPlaygrounds/rig/pull/666))
20+
21+
### Fixed
22+
23+
- *(rig-886)* only GenerationConfig can be passed into additional_params ([#707](https://github.com/0xPlaygrounds/rig/pull/707))
24+
- deepseek streaming endpoint ([#687](https://github.com/0xPlaygrounds/rig/pull/687))
25+
- *(rig-864)* missing id from OpenAI Responses API for reasoning items ([#681](https://github.com/0xPlaygrounds/rig/pull/681))
26+
27+
### Other
28+
29+
- *(gemini)* Refactor parts to Vec instead of OneOrMany in Gemini ([#691](https://github.com/0xPlaygrounds/rig/pull/691))
30+
- consistent visibility modifiers in openai ([#694](https://github.com/0xPlaygrounds/rig/pull/694))
31+
- Update rmcp to version 0.5 ([#682](https://github.com/0xPlaygrounds/rig/pull/682))
32+
- Fix SSE parsing in Gemini provider ([#683](https://github.com/0xPlaygrounds/rig/pull/683))
33+
- *(rig-862)* remove sync bound from fn call() in tool trait ([#678](https://github.com/0xPlaygrounds/rig/pull/678))
34+
- 删除gemini providers中重复的方法 ([#675](https://github.com/0xPlaygrounds/rig/pull/675))
35+
1036
## [0.17.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.17.0...rig-core-v0.17.1) - 2025-08-05
1137

1238
### 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"
@@ -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.4", path = "rig-core-derive", optional = true }
33+
rig-derive = { version = "0.1.5", 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.5](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.4...rig-derive-v0.1.5) - 2025-08-18
11+
12+
### Other
13+
14+
- *(rig-862)* remove sync bound from fn call() in tool trait ([#678](https://github.com/0xPlaygrounds/rig/pull/678))
15+
1016
## [0.1.4](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.3...rig-derive-v0.1.4) - 2025-07-07
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.4"
3+
version = "0.1.5"
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.3](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.3.2...rig-eternalai-v0.3.3) - 2025-08-18
11+
12+
### Other
13+
14+
- updated the following local packages: rig-core
15+
1016
## [0.3.2](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.3.1...rig-eternalai-v0.3.2) - 2025-08-05
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.2"
3+
version = "0.3.3"
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.17.1" }
11+
rig-core = { path = "../rig-core", version = "0.18.0" }
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.7](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.2.6...rig-fastembed-v0.2.7) - 2025-08-18
11+
12+
### Other
13+
14+
- updated the following local packages: rig-core
15+
1016
## [0.2.6](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.2.5...rig-fastembed-v0.2.6) - 2025-08-05
1117

1218
### Other

0 commit comments

Comments
 (0)