From 838092a71c16f7785b34e230684937fd17f14f33 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 14:36:44 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 22 +++++++++++----------- rig-bedrock/CHANGELOG.md | 6 ++++++ rig-bedrock/Cargo.toml | 4 ++-- rig-core/CHANGELOG.md | 14 ++++++++++++++ rig-core/Cargo.toml | 2 +- rig-eternalai/CHANGELOG.md | 6 ++++++ rig-eternalai/Cargo.toml | 4 ++-- rig-fastembed/CHANGELOG.md | 6 ++++++ rig-fastembed/Cargo.toml | 4 ++-- rig-lancedb/CHANGELOG.md | 6 ++++++ rig-lancedb/Cargo.toml | 4 ++-- rig-mongodb/CHANGELOG.md | 6 ++++++ rig-mongodb/Cargo.toml | 4 ++-- rig-neo4j/CHANGELOG.md | 6 ++++++ rig-neo4j/Cargo.toml | 4 ++-- rig-postgres/CHANGELOG.md | 6 ++++++ rig-postgres/Cargo.toml | 4 ++-- rig-qdrant/CHANGELOG.md | 6 ++++++ rig-qdrant/Cargo.toml | 4 ++-- rig-sqlite/CHANGELOG.md | 6 ++++++ rig-sqlite/Cargo.toml | 4 ++-- rig-surrealdb/CHANGELOG.md | 6 ++++++ rig-surrealdb/Cargo.toml | 4 ++-- 23 files changed, 106 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5f84f38..f9f86cdc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8622,7 +8622,7 @@ checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" [[package]] name = "rig-bedrock" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "async-stream", @@ -8644,7 +8644,7 @@ dependencies = [ [[package]] name = "rig-core" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anyhow", "assert_fs", @@ -8693,7 +8693,7 @@ dependencies = [ [[package]] name = "rig-eternalai" -version = "0.2.6" +version = "0.2.7" dependencies = [ "anyhow", "ethers", @@ -8709,7 +8709,7 @@ dependencies = [ [[package]] name = "rig-fastembed" -version = "0.1.6" +version = "0.1.7" dependencies = [ "anyhow", "fastembed", @@ -8723,7 +8723,7 @@ dependencies = [ [[package]] name = "rig-lancedb" -version = "0.2.10" +version = "0.2.11" dependencies = [ "anyhow", "arrow-array", @@ -8739,7 +8739,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.2.10" +version = "0.2.11" dependencies = [ "anyhow", "futures", @@ -8756,7 +8756,7 @@ dependencies = [ [[package]] name = "rig-neo4j" -version = "0.2.10" +version = "0.2.11" dependencies = [ "anyhow", "futures", @@ -8775,7 +8775,7 @@ dependencies = [ [[package]] name = "rig-postgres" -version = "0.1.8" +version = "0.1.9" dependencies = [ "anyhow", "dotenvy", @@ -8796,7 +8796,7 @@ dependencies = [ [[package]] name = "rig-qdrant" -version = "0.1.13" +version = "0.1.14" dependencies = [ "anyhow", "httpmock", @@ -8811,7 +8811,7 @@ dependencies = [ [[package]] name = "rig-sqlite" -version = "0.1.10" +version = "0.1.11" dependencies = [ "anyhow", "chrono", @@ -8830,7 +8830,7 @@ dependencies = [ [[package]] name = "rig-surrealdb" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "rig-core", diff --git a/rig-bedrock/CHANGELOG.md b/rig-bedrock/CHANGELOG.md index a6f44446..37519621 100644 --- a/rig-bedrock/CHANGELOG.md +++ b/rig-bedrock/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.3...rig-bedrock-v0.1.4) - 2025-05-12 + +### Added + +- Improve Streaming API ([#388](https://github.com/0xPlaygrounds/rig/pull/388)) + ## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.2...rig-bedrock-v0.1.3) - 2025-04-30 ### Fixed diff --git a/rig-bedrock/Cargo.toml b/rig-bedrock/Cargo.toml index 8f5f74f7..af9fdc09 100644 --- a/rig-bedrock/Cargo.toml +++ b/rig-bedrock/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "rig-bedrock" -version = "0.1.3" +version = "0.1.4" edition = "2021" license = "MIT" readme = "README.md" description = "AWS Bedrock model provider for Rig integration." [dependencies] -rig-core = { version = "0.12.0", path = "../rig-core", features = ["image"] } +rig-core = { version = "0.13.0", path = "../rig-core", features = ["image"] } rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.2" } serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108" diff --git a/rig-core/CHANGELOG.md b/rig-core/CHANGELOG.md index 7b8eddd6..3ded82d2 100644 --- a/rig-core/CHANGELOG.md +++ b/rig-core/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.12.0...rig-core-v0.13.0) - 2025-05-12 + +### Added + +- Improve Streaming API ([#388](https://github.com/0xPlaygrounds/rig/pull/388)) + +### Fixed + +- bump mcp-core to latest version and fixed breaking changes ([#443](https://github.com/0xPlaygrounds/rig/pull/443)) + +### Other + +- fix some typos in comment ([#445](https://github.com/0xPlaygrounds/rig/pull/445)) + ## [0.12.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.11.1...rig-core-v0.12.0) - 2025-04-29 ### Added diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index a411f032..46be96fb 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.12.0" +version = "0.13.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/rig-eternalai/CHANGELOG.md b/rig-eternalai/CHANGELOG.md index 730bae24..498ea0e3 100644 --- a/rig-eternalai/CHANGELOG.md +++ b/rig-eternalai/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.7](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.6...rig-eternalai-v0.2.7) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.2.6](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.5...rig-eternalai-v0.2.6) - 2025-04-29 ### Added diff --git a/rig-eternalai/Cargo.toml b/rig-eternalai/Cargo.toml index 2f03f803..5e6337ba 100644 --- a/rig-eternalai/Cargo.toml +++ b/rig-eternalai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-eternalai" -version = "0.2.6" +version = "0.2.7" edition = "2021" license = "MIT" readme = "README.md" @@ -8,7 +8,7 @@ description = "EternalAI model provider Rig integration." repository = "https://github.com/0xPlaygrounds/rig" [dependencies] -rig-core = { path = "../rig-core", version = "0.12.0" } +rig-core = { path = "../rig-core", version = "0.13.0" } ethers = "2.0.14" reqwest = { version = "0.12.12", features = ["json"] } serde = { version = "1.0.193", features = ["derive"] } diff --git a/rig-fastembed/CHANGELOG.md b/rig-fastembed/CHANGELOG.md index afdfd603..d58758a9 100644 --- a/rig-fastembed/CHANGELOG.md +++ b/rig-fastembed/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.7](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.6...rig-fastembed-v0.1.7) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.1.6](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.5...rig-fastembed-v0.1.6) - 2025-04-29 ### Other diff --git a/rig-fastembed/Cargo.toml b/rig-fastembed/Cargo.toml index 3d065d65..0b0f88ee 100644 --- a/rig-fastembed/Cargo.toml +++ b/rig-fastembed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-fastembed" -version = "0.1.6" +version = "0.1.7" edition = "2021" license = "MIT" readme = "README.md" @@ -8,7 +8,7 @@ description = "Rig vector store index integration for Fastembed. https://github. repository = "https://github.com/0xPlaygrounds/rig" [dependencies] -rig-core = { path = "../rig-core", version = "0.12.0" } +rig-core = { path = "../rig-core", version = "0.13.0" } serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108" tracing = "0.1.40" diff --git a/rig-lancedb/CHANGELOG.md b/rig-lancedb/CHANGELOG.md index b4a2d127..604e2ac2 100644 --- a/rig-lancedb/CHANGELOG.md +++ b/rig-lancedb/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.10...rig-lancedb-v0.2.11) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.9...rig-lancedb-v0.2.10) - 2025-04-29 ### Other diff --git a/rig-lancedb/Cargo.toml b/rig-lancedb/Cargo.toml index 9f172dd6..7ba5a8d6 100644 --- a/rig-lancedb/Cargo.toml +++ b/rig-lancedb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-lancedb" -version = "0.2.10" +version = "0.2.11" edition = "2021" license = "MIT" readme = "README.md" @@ -9,7 +9,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] lancedb = "0.18.1" -rig-core = { path = "../rig-core", version = "0.12.0" } +rig-core = { path = "../rig-core", version = "0.13.0" } arrow-array = "54.2.1" serde_json = "1.0.128" serde = "1.0.210" diff --git a/rig-mongodb/CHANGELOG.md b/rig-mongodb/CHANGELOG.md index 3a345aa8..4f5afd78 100644 --- a/rig-mongodb/CHANGELOG.md +++ b/rig-mongodb/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.10...rig-mongodb-v0.2.11) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.9...rig-mongodb-v0.2.10) - 2025-04-29 ### Other diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index 70fcc1e8..b0fff192 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.2.10" +version = "0.2.11" edition = "2021" license = "MIT" readme = "README.md" @@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] futures = "0.3.30" mongodb = "3.1.0" -rig-core = { path = "../rig-core", version = "0.12.0" } +rig-core = { path = "../rig-core", version = "0.13.0" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = "0.1.40" diff --git a/rig-neo4j/CHANGELOG.md b/rig-neo4j/CHANGELOG.md index ff16630c..9ee453b5 100644 --- a/rig-neo4j/CHANGELOG.md +++ b/rig-neo4j/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.10...rig-neo4j-v0.2.11) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.9...rig-neo4j-v0.2.10) - 2025-04-29 ### Fixed diff --git a/rig-neo4j/Cargo.toml b/rig-neo4j/Cargo.toml index 48c1d73f..dbc210a1 100644 --- a/rig-neo4j/Cargo.toml +++ b/rig-neo4j/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-neo4j" -version = "0.2.10" +version = "0.2.11" edition = "2021" license = "MIT" readme = "README.md" @@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] futures = "0.3.30" neo4rs = "0.8.0" -rig-core = { path = "../rig-core", version = "0.12.0" } +rig-core = { path = "../rig-core", version = "0.13.0" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = "0.1.40" diff --git a/rig-postgres/CHANGELOG.md b/rig-postgres/CHANGELOG.md index 7a096834..4f837faa 100644 --- a/rig-postgres/CHANGELOG.md +++ b/rig-postgres/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.9](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.8...rig-postgres-v0.1.9) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.1.8](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.7...rig-postgres-v0.1.8) - 2025-04-29 ### Other diff --git a/rig-postgres/Cargo.toml b/rig-postgres/Cargo.toml index bbd2d88e..6195f359 100644 --- a/rig-postgres/Cargo.toml +++ b/rig-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-postgres" -version = "0.1.8" +version = "0.1.9" edition = "2021" description = "PostgreSQL-based vector store implementation for the rig framework" license = "MIT" @@ -8,7 +8,7 @@ readme = "README.md" repository = "https://github.com/0xPlaygrounds/rig" [dependencies] -rig-core = { path = "../rig-core", version = "0.12.0", features = ["derive"] } +rig-core = { path = "../rig-core", version = "0.13.0", features = ["derive"] } serde = { version = "1.0.215", features = ["derive"] } serde_json = "1.0.133" diff --git a/rig-qdrant/CHANGELOG.md b/rig-qdrant/CHANGELOG.md index c0e0b10b..102a1de6 100644 --- a/rig-qdrant/CHANGELOG.md +++ b/rig-qdrant/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.14](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.13...rig-qdrant-v0.1.14) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.1.13](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.12...rig-qdrant-v0.1.13) - 2025-04-29 ### Other diff --git a/rig-qdrant/Cargo.toml b/rig-qdrant/Cargo.toml index 65ae5062..668a049f 100644 --- a/rig-qdrant/Cargo.toml +++ b/rig-qdrant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-qdrant" -version = "0.1.13" +version = "0.1.14" edition = "2021" license = "MIT" readme = "README.md" @@ -8,7 +8,7 @@ description = "Rig vector store index integration for Qdrant. https://qdrant.tec repository = "https://github.com/0xPlaygrounds/rig" [dependencies] -rig-core = { path = "../rig-core", version = "0.12.0" } +rig-core = { path = "../rig-core", version = "0.13.0" } serde_json = "1.0.128" serde = "1.0.210" qdrant-client = "1.13.0" diff --git a/rig-sqlite/CHANGELOG.md b/rig-sqlite/CHANGELOG.md index 4a47ec40..25e49db5 100644 --- a/rig-sqlite/CHANGELOG.md +++ b/rig-sqlite/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.10...rig-sqlite-v0.1.11) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.1.10](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.9...rig-sqlite-v0.1.10) - 2025-04-29 ### Other diff --git a/rig-sqlite/Cargo.toml b/rig-sqlite/Cargo.toml index 9c760a55..5efa130b 100644 --- a/rig-sqlite/Cargo.toml +++ b/rig-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-sqlite" -version = "0.1.10" +version = "0.1.11" edition = "2021" description = "SQLite-based vector store implementation for the rig framework" license = "MIT" @@ -9,7 +9,7 @@ license = "MIT" doctest = false [dependencies] -rig-core = { path = "../rig-core", version = "0.12.0", features = ["derive"] } +rig-core = { path = "../rig-core", version = "0.13.0", features = ["derive"] } rusqlite = { version = "0.32", features = ["bundled"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/rig-surrealdb/CHANGELOG.md b/rig-surrealdb/CHANGELOG.md index 2aa0b3a4..dfc436da 100644 --- a/rig-surrealdb/CHANGELOG.md +++ b/rig-surrealdb/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/0xPlaygrounds/rig/compare/rig-surrealdb-v0.1.5...rig-surrealdb-v0.1.6) - 2025-05-12 + +### Other + +- updated the following local packages: rig-core + ## [0.1.5](https://github.com/0xPlaygrounds/rig/compare/rig-surrealdb-v0.1.4...rig-surrealdb-v0.1.5) - 2025-04-29 ### Other diff --git a/rig-surrealdb/Cargo.toml b/rig-surrealdb/Cargo.toml index 9c13d41d..a13e63a6 100644 --- a/rig-surrealdb/Cargo.toml +++ b/rig-surrealdb/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "rig-surrealdb" -version = "0.1.5" +version = "0.1.6" edition = "2021" description = "SurrealDB vector store implementation for the rig framework" license = "MIT" [dependencies] surrealdb = { version = "2.1.4", features = ["protocol-ws", "kv-mem"] } -rig-core = { path = "../rig-core", version = "0.12.0", features = ["derive"] } +rig-core = { path = "../rig-core", version = "0.13.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tracing = "0.1"