diff --git a/Cargo.lock b/Cargo.lock index 6324ddf7..fb241d57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5255,7 +5255,7 @@ checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" [[package]] name = "rig-core" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "assert_fs", @@ -5289,7 +5289,7 @@ dependencies = [ [[package]] name = "rig-lancedb" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "arrow-array", @@ -5304,7 +5304,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "futures", @@ -5321,7 +5321,7 @@ dependencies = [ [[package]] name = "rig-neo4j" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "futures", @@ -5340,7 +5340,7 @@ dependencies = [ [[package]] name = "rig-qdrant" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "httpmock", @@ -5354,7 +5354,7 @@ dependencies = [ [[package]] name = "rig-sqlite" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "chrono", diff --git a/rig-core/CHANGELOG.md b/rig-core/CHANGELOG.md index 08059ef4..4f30423d 100644 --- a/rig-core/CHANGELOG.md +++ b/rig-core/CHANGELOG.md @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.6.0...rig-core-v0.6.1) - 2025-01-13 + +### Added + +- Add `from_url` method to Gemini client (#194) +- Feature flag for CF worker compatibility (#176) (#175) +- *(eternal-ai)* Eternal-AI provider for rig (#171) +- Add gpt-4o-mini to openai model list (#187) + +### Fixed + +- *(example)* ollama example uses wrong url + +### Other + +- Add additional check for empty tool_calls ([#166](https://github.com/0xPlaygrounds/rig/pull/166)) +- Mock provider API in vector store integration tests (#186) +- fix comment (#182) +- fix various typos + ## [0.6.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.5.0...rig-core-v0.6.0) - 2024-12-19 ### Added diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index 68cda329..1afd7c05 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "MIT" readme = "README.md" diff --git a/rig-lancedb/CHANGELOG.md b/rig-lancedb/CHANGELOG.md index 37798791..a65259d8 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.2](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.1...rig-lancedb-v0.2.2) - 2025-01-13 + +### Other + +- Mock provider API in vector store integration tests (#186) + ## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.0...rig-lancedb-v0.2.1) - 2024-12-19 ### Other diff --git a/rig-lancedb/Cargo.toml b/rig-lancedb/Cargo.toml index 4a62e1a7..8a03ddf9 100644 --- a/rig-lancedb/Cargo.toml +++ b/rig-lancedb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-lancedb" -version = "0.2.1" +version = "0.2.2" edition = "2021" license = "MIT" readme = "README.md" @@ -9,7 +9,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] lancedb = "0.10.0" -rig-core = { path = "../rig-core", version = "0.6.0" } +rig-core = { path = "../rig-core", version = "0.6.1" } arrow-array = "52.2.0" serde_json = "1.0.128" serde = "1.0.210" diff --git a/rig-mongodb/CHANGELOG.md b/rig-mongodb/CHANGELOG.md index aee3f3fa..b5482d28 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.2](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.1...rig-mongodb-v0.2.2) - 2025-01-13 + +### Other + +- Mock provider API in vector store integration tests (#186) + ## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.0...rig-mongodb-v0.2.1) - 2024-12-19 ### Added diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index 9623a05a..82192bfc 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.2.1" +version = "0.2.2" 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.6.0" } +rig-core = { path = "../rig-core", version = "0.6.1" } 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 1abf0830..cff03c64 100644 --- a/rig-neo4j/CHANGELOG.md +++ b/rig-neo4j/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.1...rig-neo4j-v0.2.2) - 2025-01-13 + +### Other + +- *(rig-neo4j)* remove old tests (#197) +- *(rig-neo4j)* Fix neo4j integration test (#190) +- Mock provider API in vector store integration tests (#186) +- fix typo + ## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.0...rig-neo4j-v0.2.1) - 2024-12-19 ### Other diff --git a/rig-neo4j/Cargo.toml b/rig-neo4j/Cargo.toml index 17c4a2e9..d5ecd423 100644 --- a/rig-neo4j/Cargo.toml +++ b/rig-neo4j/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-neo4j" -version = "0.2.1" +version = "0.2.2" 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.6.0" } +rig-core = { path = "../rig-core", version = "0.6.1" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = "0.1.40" diff --git a/rig-qdrant/CHANGELOG.md b/rig-qdrant/CHANGELOG.md index 362d7790..c989cc39 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.5](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.4...rig-qdrant-v0.1.5) - 2025-01-13 + +### Other + +- Mock provider API in vector store integration tests (#186) + ## [0.1.4](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.3...rig-qdrant-v0.1.4) - 2024-12-19 ### Other diff --git a/rig-qdrant/Cargo.toml b/rig-qdrant/Cargo.toml index 296f6838..b7a94945 100644 --- a/rig-qdrant/Cargo.toml +++ b/rig-qdrant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-qdrant" -version = "0.1.4" +version = "0.1.5" 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.6.0" } +rig-core = { path = "../rig-core", version = "0.6.1" } serde_json = "1.0.128" serde = "1.0.210" qdrant-client = "1.12.1" diff --git a/rig-sqlite/CHANGELOG.md b/rig-sqlite/CHANGELOG.md index 7dc3619e..14668160 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.2](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.1...rig-sqlite-v0.1.2) - 2025-01-13 + +### Other + +- updated the following local packages: rig-core + ## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.0...rig-sqlite-v0.1.1) - 2024-12-19 ### Other diff --git a/rig-sqlite/Cargo.toml b/rig-sqlite/Cargo.toml index 6a761cde..3529f9b2 100644 --- a/rig-sqlite/Cargo.toml +++ b/rig-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-sqlite" -version = "0.1.1" +version = "0.1.2" 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.6.0", features = ["derive"] } +rig-core = { path = "../rig-core", version = "0.6.1", features = ["derive"] } rusqlite = { version = "0.32", features = ["bundled"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"