Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions rig-integrations/rig-bedrock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4.5](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.4.4...rig-bedrock-v0.4.5) - 2026-04-28

### Fixed

- *(bedrock)* preserve adaptive-thinking signatures in streaming reasoning ([#1683](https://github.com/0xPlaygrounds/rig/pull/1683)) (by @byQuexo)
- *(bedrock)* handle adaptive-thinking interactions for prompt caching and reasoning conversion ([#1675](https://github.com/0xPlaygrounds/rig/pull/1675)) (by @byQuexo)
- *(bedrock)* preserve all parallel tool calls in completion response ([#1626](https://github.com/0xPlaygrounds/rig/pull/1626)) (by @aleksmeshr)

### Other

- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
- remove deprecated code ([#1633](https://github.com/0xPlaygrounds/rig/pull/1633)) (by @gold-silver-copper) - #1633

### Contributors

* @byQuexo
* @gold-silver-copper
* @aleksmeshr
## [0.4.4](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.4.3...rig-bedrock-v0.4.4) - 2026-04-12

### Added
Expand Down
6 changes: 3 additions & 3 deletions rig-integrations/rig-bedrock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-bedrock"
version = "0.4.4"
version = "0.4.5"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand All @@ -18,11 +18,11 @@ aws-config = { workspace = true, features = ["behavior-version-latest"] }
aws-sdk-bedrockruntime = { workspace = true, features = ["rt-tokio", "default-https-client"] }
aws-smithy-types = { workspace = true }
base64 = { workspace = true }
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false, features = [
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false, features = [
"image",
] }
nanoid = { workspace = true }
rig-derive = { path = "../../rig/rig-derive", version = "0.1.12" }
rig-derive = { path = "../../rig/rig-derive", version = "0.1.13" }
schemars = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
15 changes: 15 additions & 0 deletions rig-integrations/rig-fastembed/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4.0](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.3.4...rig-fastembed-v0.4.0) - 2026-04-28

### Added

- rustls by default for everything ([#1682](https://github.com/0xPlaygrounds/rig/pull/1682)) (by @gold-silver-copper) - #1682

### Other

- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
- standardize required fields handling across builders ([#1611](https://github.com/0xPlaygrounds/rig/pull/1611)) (by @isSerge) - #1611

### Contributors

* @gold-silver-copper
* @isSerge
## [0.3.4](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.3.3...rig-fastembed-v0.3.4) - 2026-04-12

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-integrations/rig-fastembed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-fastembed"
version = "0.3.4"
version = "0.4.0"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
workspace = true

[dependencies]
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false }
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tracing = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions rig-integrations/rig-gemini-grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-gemini-grpc-v0.2.4...rig-gemini-grpc-v0.2.5) - 2026-04-28

### Other

- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663

### Contributors

* @gold-silver-copper

## [0.2.4](https://github.com/0xPlaygrounds/rig/compare/rig-gemini-grpc-v0.2.3...rig-gemini-grpc-v0.2.4) - 2026-04-12

Expand Down
4 changes: 2 additions & 2 deletions rig-integrations/rig-gemini-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-gemini-grpc"
version = "0.2.4"
version = "0.2.5"
edition.workspace = true
license = "MIT"
readme = "README.md"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
workspace = true

[dependencies]
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false }
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false }
async-stream = { workspace = true }
base64 = { workspace = true }
futures = { workspace = true }
Expand Down
15 changes: 15 additions & 0 deletions rig-integrations/rig-helixdb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-helixdb-v0.2.4...rig-helixdb-v0.2.5) - 2026-04-28

### Added

- rustls by default for everything ([#1682](https://github.com/0xPlaygrounds/rig/pull/1682)) (by @gold-silver-copper) - #1682

### Other

- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
- standardize required fields handling across builders ([#1611](https://github.com/0xPlaygrounds/rig/pull/1611)) (by @isSerge) - #1611

### Contributors

* @gold-silver-copper
* @isSerge
## [0.2.4](https://github.com/0xPlaygrounds/rig/compare/rig-helixdb-v0.2.3...rig-helixdb-v0.2.4) - 2026-04-12

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-integrations/rig-helixdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-helixdb"
version = "0.2.4"
version = "0.2.5"
edition.workspace = true
license = "MIT"
readme = "README.md"
Expand All @@ -15,7 +15,7 @@ reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror = { workspace = true }
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false }
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false }

[dev-dependencies]
anyhow = { workspace = true }
Expand Down
15 changes: 15 additions & 0 deletions rig-integrations/rig-lancedb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4.5](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.4.4...rig-lancedb-v0.4.5) - 2026-04-28

### Added

- rustls by default for everything ([#1682](https://github.com/0xPlaygrounds/rig/pull/1682)) (by @gold-silver-copper) - #1682

### Other

- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
- standardize required fields handling across builders ([#1611](https://github.com/0xPlaygrounds/rig/pull/1611)) (by @isSerge) - #1611

### Contributors

* @gold-silver-copper
* @isSerge
## [0.4.4](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.4.3...rig-lancedb-v0.4.4) - 2026-04-12

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-integrations/rig-lancedb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-lancedb"
version = "0.4.4"
version = "0.4.5"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand All @@ -12,7 +12,7 @@ workspace = true

[dependencies]
lancedb = { workspace = true }
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false }
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false }
arrow-array = { workspace = true }
serde_json = { workspace = true }
serde = { workspace = true }
Expand Down
15 changes: 15 additions & 0 deletions rig-integrations/rig-milvus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-milvus-v0.2.4...rig-milvus-v0.2.5) - 2026-04-28

### Added

- rustls by default for everything ([#1682](https://github.com/0xPlaygrounds/rig/pull/1682)) (by @gold-silver-copper) - #1682

### Other

- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
- standardize required fields handling across builders ([#1611](https://github.com/0xPlaygrounds/rig/pull/1611)) (by @isSerge) - #1611

### Contributors

* @gold-silver-copper
* @isSerge
## [0.2.4](https://github.com/0xPlaygrounds/rig/compare/rig-milvus-v0.2.3...rig-milvus-v0.2.4) - 2026-04-12

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-integrations/rig-milvus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-milvus"
version = "0.2.4"
version = "0.2.5"
edition = { workspace = true }
description = "Milvus vector store implementation for the rig framework"
license = "MIT"
Expand All @@ -10,7 +10,7 @@ workspace = true

[dependencies]
reqwest = { workspace = true, features = ["json"] }
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false }
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
Expand Down
Loading