From 1f9d0b6aeeb97f96f4cbd58015159601b46a4bc2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Apr 2025 22:44:37 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 22 +++++++++++----------- rig-bedrock/CHANGELOG.md | 6 ++++++ rig-bedrock/Cargo.toml | 4 ++-- rig-core/CHANGELOG.md | 6 ++++++ 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, 98 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5714d75..ddabaeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8622,7 +8622,7 @@ checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" [[package]] name = "rig-bedrock" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "async-stream", @@ -8643,7 +8643,7 @@ dependencies = [ [[package]] name = "rig-core" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "assert_fs", @@ -8692,7 +8692,7 @@ dependencies = [ [[package]] name = "rig-eternalai" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "ethers", @@ -8708,7 +8708,7 @@ dependencies = [ [[package]] name = "rig-fastembed" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "fastembed", @@ -8722,7 +8722,7 @@ dependencies = [ [[package]] name = "rig-lancedb" -version = "0.2.9" +version = "0.2.10" dependencies = [ "anyhow", "arrow-array", @@ -8738,7 +8738,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.2.9" +version = "0.2.10" dependencies = [ "anyhow", "futures", @@ -8755,7 +8755,7 @@ dependencies = [ [[package]] name = "rig-neo4j" -version = "0.2.9" +version = "0.2.10" dependencies = [ "anyhow", "futures", @@ -8774,7 +8774,7 @@ dependencies = [ [[package]] name = "rig-postgres" -version = "0.1.7" +version = "0.1.8" dependencies = [ "anyhow", "dotenvy", @@ -8795,7 +8795,7 @@ dependencies = [ [[package]] name = "rig-qdrant" -version = "0.1.12" +version = "0.1.13" dependencies = [ "anyhow", "httpmock", @@ -8810,7 +8810,7 @@ dependencies = [ [[package]] name = "rig-sqlite" -version = "0.1.9" +version = "0.1.10" dependencies = [ "anyhow", "chrono", @@ -8829,7 +8829,7 @@ dependencies = [ [[package]] name = "rig-surrealdb" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "rig-core", diff --git a/rig-bedrock/CHANGELOG.md b/rig-bedrock/CHANGELOG.md index 745a2fc..d85e07e 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.2](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.1...rig-bedrock-v0.1.2) - 2025-04-17 + +### Added + +- support custom clients for bedrock ([#403](https://github.com/0xPlaygrounds/rig/pull/403)) + ## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.0...rig-bedrock-v0.1.1) - 2025-04-12 ### Other diff --git a/rig-bedrock/Cargo.toml b/rig-bedrock/Cargo.toml index bb204b5..f4bdd7f 100644 --- a/rig-bedrock/Cargo.toml +++ b/rig-bedrock/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "rig-bedrock" -version = "0.1.1" +version = "0.1.2" edition = "2021" license = "MIT" readme = "README.md" description = "AWS Bedrock model provider for Rig integration." [dependencies] -rig-core = { version = "0.11.1", path = "../rig-core", features = ["image"] } +rig-core = { version = "0.11.2", path = "../rig-core", features = ["image"] } rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.1" } 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 918d5a7..b067986 100644 --- a/rig-core/CHANGELOG.md +++ b/rig-core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.2](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.11.1...rig-core-v0.11.2) - 2025-04-17 + +### Other + +- Update agent_with_huggingface.rs ([#401](https://github.com/0xPlaygrounds/rig/pull/401)) + ## [0.11.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.11.0...rig-core-v0.11.1) - 2025-04-12 ### Added diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index 3dac86b..f237a34 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.11.1" +version = "0.11.2" edition = "2021" license = "MIT" readme = "README.md" diff --git a/rig-eternalai/CHANGELOG.md b/rig-eternalai/CHANGELOG.md index 99ac6bf..6c4fdd0 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.6](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.5...rig-eternalai-v0.2.6) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.4...rig-eternalai-v0.2.5) - 2025-04-12 ### Other diff --git a/rig-eternalai/Cargo.toml b/rig-eternalai/Cargo.toml index 555b2a9..1dab80e 100644 --- a/rig-eternalai/Cargo.toml +++ b/rig-eternalai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-eternalai" -version = "0.2.5" +version = "0.2.6" 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.11.1" } +rig-core = { path = "../rig-core", version = "0.11.2" } 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 dc80b50..51ba5c3 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.6](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.5...rig-fastembed-v0.1.6) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.1.5](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.4...rig-fastembed-v0.1.5) - 2025-04-12 ### Other diff --git a/rig-fastembed/Cargo.toml b/rig-fastembed/Cargo.toml index 2d7f22f..2e375d6 100644 --- a/rig-fastembed/Cargo.toml +++ b/rig-fastembed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-fastembed" -version = "0.1.5" +version = "0.1.6" 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.11.1" } +rig-core = { path = "../rig-core", version = "0.11.2" } 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 c37bdcf..5695954 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.10](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.9...rig-lancedb-v0.2.10) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.8...rig-lancedb-v0.2.9) - 2025-04-12 ### Other diff --git a/rig-lancedb/Cargo.toml b/rig-lancedb/Cargo.toml index 6fb1f7a..d434499 100644 --- a/rig-lancedb/Cargo.toml +++ b/rig-lancedb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-lancedb" -version = "0.2.9" +version = "0.2.10" 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.11.1" } +rig-core = { path = "../rig-core", version = "0.11.2" } 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 cfa05ff..eb7b009 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.10](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.9...rig-mongodb-v0.2.10) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.8...rig-mongodb-v0.2.9) - 2025-04-12 ### Other diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index 3e38a10..49a0146 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.2.9" +version = "0.2.10" 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.11.1" } +rig-core = { path = "../rig-core", version = "0.11.2" } 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 d708619..90102c6 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.10](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.9...rig-neo4j-v0.2.10) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.8...rig-neo4j-v0.2.9) - 2025-04-12 ### Other diff --git a/rig-neo4j/Cargo.toml b/rig-neo4j/Cargo.toml index 2c2b038..3b45755 100644 --- a/rig-neo4j/Cargo.toml +++ b/rig-neo4j/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-neo4j" -version = "0.2.9" +version = "0.2.10" 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.11.1" } +rig-core = { path = "../rig-core", version = "0.11.2" } 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 d4d87f2..742f83e 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.8](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.7...rig-postgres-v0.1.8) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.1.7](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.6...rig-postgres-v0.1.7) - 2025-04-12 ### Other diff --git a/rig-postgres/Cargo.toml b/rig-postgres/Cargo.toml index b8bc020..2ce161c 100644 --- a/rig-postgres/Cargo.toml +++ b/rig-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-postgres" -version = "0.1.7" +version = "0.1.8" 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.11.1", features = ["derive"] } +rig-core = { path = "../rig-core", version = "0.11.2", 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 03735fd..908dce3 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.13](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.12...rig-qdrant-v0.1.13) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.1.12](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.11...rig-qdrant-v0.1.12) - 2025-04-12 ### Other diff --git a/rig-qdrant/Cargo.toml b/rig-qdrant/Cargo.toml index 8eb481d..5001086 100644 --- a/rig-qdrant/Cargo.toml +++ b/rig-qdrant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-qdrant" -version = "0.1.12" +version = "0.1.13" 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.11.1" } +rig-core = { path = "../rig-core", version = "0.11.2" } 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 648dc4b..68ef7ad 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.10](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.9...rig-sqlite-v0.1.10) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.1.9](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.8...rig-sqlite-v0.1.9) - 2025-04-12 ### Other diff --git a/rig-sqlite/Cargo.toml b/rig-sqlite/Cargo.toml index 5378bb1..1ece2fe 100644 --- a/rig-sqlite/Cargo.toml +++ b/rig-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-sqlite" -version = "0.1.9" +version = "0.1.10" 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.11.1", features = ["derive"] } +rig-core = { path = "../rig-core", version = "0.11.2", 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 b6c17f0..352c748 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.5](https://github.com/0xPlaygrounds/rig/compare/rig-surrealdb-v0.1.4...rig-surrealdb-v0.1.5) - 2025-04-17 + +### Other + +- updated the following local packages: rig-core + ## [0.1.4](https://github.com/0xPlaygrounds/rig/compare/rig-surrealdb-v0.1.3...rig-surrealdb-v0.1.4) - 2025-04-12 ### Other diff --git a/rig-surrealdb/Cargo.toml b/rig-surrealdb/Cargo.toml index afa3726..8318728 100644 --- a/rig-surrealdb/Cargo.toml +++ b/rig-surrealdb/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "rig-surrealdb" -version = "0.1.4" +version = "0.1.5" 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.11.1", features = ["derive"] } +rig-core = { path = "../rig-core", version = "0.11.2", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tracing = "0.1"