diff --git a/Cargo.lock b/Cargo.lock index 156a23a25..2e95ec021 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9113,7 +9113,7 @@ checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" [[package]] name = "rig-bedrock" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "async-stream", @@ -9135,7 +9135,7 @@ dependencies = [ [[package]] name = "rig-core" -version = "0.13.0" +version = "0.14.0" dependencies = [ "anyhow", "as-any", @@ -9169,7 +9169,7 @@ dependencies = [ [[package]] name = "rig-derive" -version = "0.1.3" +version = "0.1.4" dependencies = [ "convert_case 0.8.0", "deluxe", @@ -9186,7 +9186,7 @@ dependencies = [ [[package]] name = "rig-eternalai" -version = "0.2.7" +version = "0.2.8" dependencies = [ "anyhow", "async-stream", @@ -9203,7 +9203,7 @@ dependencies = [ [[package]] name = "rig-fastembed" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "fastembed", @@ -9217,7 +9217,7 @@ dependencies = [ [[package]] name = "rig-lancedb" -version = "0.2.11" +version = "0.2.12" dependencies = [ "anyhow", "arrow-array", @@ -9233,7 +9233,7 @@ dependencies = [ [[package]] name = "rig-milvus" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "reqwest 0.12.20", @@ -9247,7 +9247,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.2.11" +version = "0.2.12" dependencies = [ "anyhow", "futures", @@ -9264,7 +9264,7 @@ dependencies = [ [[package]] name = "rig-neo4j" -version = "0.2.11" +version = "0.2.12" dependencies = [ "anyhow", "futures", @@ -9283,7 +9283,7 @@ dependencies = [ [[package]] name = "rig-postgres" -version = "0.1.9" +version = "0.1.10" dependencies = [ "anyhow", "dotenvy", @@ -9304,7 +9304,7 @@ dependencies = [ [[package]] name = "rig-qdrant" -version = "0.1.14" +version = "0.1.15" dependencies = [ "anyhow", "httpmock", @@ -9319,7 +9319,7 @@ dependencies = [ [[package]] name = "rig-scylladb" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "chrono", @@ -9338,7 +9338,7 @@ dependencies = [ [[package]] name = "rig-sqlite" -version = "0.1.11" +version = "0.1.12" dependencies = [ "anyhow", "chrono", @@ -9357,7 +9357,7 @@ dependencies = [ [[package]] name = "rig-surrealdb" -version = "0.1.6" +version = "0.1.7" dependencies = [ "anyhow", "rig-core", diff --git a/Cargo.toml b/Cargo.toml index 5e0523f32..ccb3226a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,7 @@ quick-xml = "0.38.0" quote = "1.0.40" rayon = "1.10.0" reqwest = { version = "0.12.20", default-features = false } -rig-derive = { version = "0.1.3", path = "rig-core/rig-core-derive" } +rig-derive = { version = "0.1.4", path = "rig-core/rig-core-derive" } rusqlite = "0.32" scylla = "1.2.0" # https://github.com/stevohuncho/mcp-core/issues/9 @@ -83,4 +83,4 @@ tracing-subscriber = "0.3.19" uuid = "1.17.0" worker = "0.6" zerocopy = "0.8.26" -rig-core = { version = "0.13.0", path = "rig-core" } +rig-core = { version = "0.14.0", path = "rig-core" } diff --git a/rig-bedrock/CHANGELOG.md b/rig-bedrock/CHANGELOG.md index bdd3a42a4..e589a13e8 100644 --- a/rig-bedrock/CHANGELOG.md +++ b/rig-bedrock/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.2.0...rig-bedrock-v0.2.1) - 2025-07-07 + +### Added + +- *(rig-780)* integrate openAI responses API ([#508](https://github.com/0xPlaygrounds/rig/pull/508)) + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.3...rig-bedrock-v0.2.0) - 2025-06-09 ### Added diff --git a/rig-bedrock/Cargo.toml b/rig-bedrock/Cargo.toml index 90ac4dbf3..52d5a1106 100644 --- a/rig-bedrock/Cargo.toml +++ b/rig-bedrock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-bedrock" -version = "0.2.0" +version = "0.2.1" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-core/CHANGELOG.md b/rig-core/CHANGELOG.md index 15e957035..bb1047b29 100644 --- a/rig-core/CHANGELOG.md +++ b/rig-core/CHANGELOG.md @@ -7,6 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.13.0...rig-core-v0.14.0) - 2025-07-07 + +### Added + +- support inserting documents as a trait ([#563](https://github.com/0xPlaygrounds/rig/pull/563)) +- Add max_tokens method to ExtractorBuilder ([#560](https://github.com/0xPlaygrounds/rig/pull/560)) +- *(rig-780)* integrate openAI responses API ([#508](https://github.com/0xPlaygrounds/rig/pull/508)) +- Stream cancellation using AbortHandle ([#525](https://github.com/0xPlaygrounds/rig/pull/525)) +- *(rig-779)* allow extractor to be turned into inner agent ([#502](https://github.com/0xPlaygrounds/rig/pull/502)) +- *(ollama)* add support for OLLAMA_API_BASE_URL environment var ([#541](https://github.com/0xPlaygrounds/rig/pull/541)) +- *(rig-766)* add support for Voyage AI ([#493](https://github.com/0xPlaygrounds/rig/pull/493)) +- *(rig-789)* add support for loading in pdfs/files as Vec ([#523](https://github.com/0xPlaygrounds/rig/pull/523)) +- multi turn streaming example ([#413](https://github.com/0xPlaygrounds/rig/pull/413)) +- *(rig-754)* support custom client configurations ([#511](https://github.com/0xPlaygrounds/rig/pull/511)) + +### Fixed + +- Retain multi-turn tool call results in case of response error ([#526](https://github.com/0xPlaygrounds/rig/pull/526)) +- *(rig-794)* parse openAI SSE response error ([#545](https://github.com/0xPlaygrounds/rig/pull/545)) +- *(rig-796)* OpenRouter extractor fails ([#544](https://github.com/0xPlaygrounds/rig/pull/544)) +- *(rig-792)* inconsistent implementations of with_custom_client ([#530](https://github.com/0xPlaygrounds/rig/pull/530)) +- *(rig-783)* tool call example doesn't work with Gemini and OpenRouter ([#515](https://github.com/0xPlaygrounds/rig/pull/515)) +- *(rig-773)* xAI embeddings endpoint is wrong ([#492](https://github.com/0xPlaygrounds/rig/pull/492)) + +### Other + +- *(rig-803)* improve documentation for multi-turn ([#562](https://github.com/0xPlaygrounds/rig/pull/562)) +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- update deps ([#543](https://github.com/0xPlaygrounds/rig/pull/543)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- error fixes for clarity +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) +- *(rig-791)* documents not consistently added to DeepSeek prompts ([#528](https://github.com/0xPlaygrounds/rig/pull/528)) +- Fix `ToolResult` serialization in ollama provider ([#504](https://github.com/0xPlaygrounds/rig/pull/504)) + ## [0.13.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.12.0...rig-core-v0.13.0) - 2025-06-09 ### Added diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index 7a33f2098..4d3096238 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.13.0" +version = "0.14.0" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-core/rig-core-derive/CHANGELOG.md b/rig-core/rig-core-derive/CHANGELOG.md index 6d5ae0ead..5f1d17404 100644 --- a/rig-core/rig-core-derive/CHANGELOG.md +++ b/rig-core/rig-core-derive/CHANGELOG.md @@ -7,6 +7,18 @@ 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-derive-v0.1.3...rig-derive-v0.1.4) - 2025-07-07 + +### Added + +- *(rig-780)* integrate openAI responses API ([#508](https://github.com/0xPlaygrounds/rig/pull/508)) + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.2...rig-derive-v0.1.3) - 2025-06-09 ### Other diff --git a/rig-core/rig-core-derive/Cargo.toml b/rig-core/rig-core-derive/Cargo.toml index e27adeba7..debf02828 100644 --- a/rig-core/rig-core-derive/Cargo.toml +++ b/rig-core/rig-core-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-derive" -version = "0.1.3" +version = "0.1.4" edition = { workspace = true } license = "MIT" description = "Internal crate that implements Rig derive macros." diff --git a/rig-eternalai/CHANGELOG.md b/rig-eternalai/CHANGELOG.md index 667c30288..0ef31d1a3 100644 --- a/rig-eternalai/CHANGELOG.md +++ b/rig-eternalai/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.8](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.7...rig-eternalai-v0.2.8) - 2025-07-07 + +### Added + +- *(rig-780)* integrate openAI responses API ([#508](https://github.com/0xPlaygrounds/rig/pull/508)) + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.2.7](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.6...rig-eternalai-v0.2.7) - 2025-06-09 ### Other diff --git a/rig-eternalai/Cargo.toml b/rig-eternalai/Cargo.toml index e060ca5b4..e7a8801d6 100644 --- a/rig-eternalai/Cargo.toml +++ b/rig-eternalai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-eternalai" -version = "0.2.7" +version = "0.2.8" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-fastembed/CHANGELOG.md b/rig-fastembed/CHANGELOG.md index 60cc69d3a..f65e4e9a6 100644 --- a/rig-fastembed/CHANGELOG.md +++ b/rig-fastembed/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.2.0...rig-fastembed-v0.2.1) - 2025-07-07 + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.6...rig-fastembed-v0.2.0) - 2025-06-09 ### Added diff --git a/rig-fastembed/Cargo.toml b/rig-fastembed/Cargo.toml index 1a4e5947c..090a8e9be 100644 --- a/rig-fastembed/Cargo.toml +++ b/rig-fastembed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-fastembed" -version = "0.2.0" +version = "0.2.1" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-lancedb/CHANGELOG.md b/rig-lancedb/CHANGELOG.md index 250cc3ef3..7f51180f3 100644 --- a/rig-lancedb/CHANGELOG.md +++ b/rig-lancedb/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.12](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.11...rig-lancedb-v0.2.12) - 2025-07-07 + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Bump lancedb ([#537](https://github.com/0xPlaygrounds/rig/pull/537)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.10...rig-lancedb-v0.2.11) - 2025-06-09 ### Other diff --git a/rig-lancedb/Cargo.toml b/rig-lancedb/Cargo.toml index 763afa659..9db229194 100644 --- a/rig-lancedb/Cargo.toml +++ b/rig-lancedb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-lancedb" -version = "0.2.11" +version = "0.2.12" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-milvus/CHANGELOG.md b/rig-milvus/CHANGELOG.md index c1fbcc003..1341d24c8 100644 --- a/rig-milvus/CHANGELOG.md +++ b/rig-milvus/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-milvus-v0.1.0...rig-milvus-v0.1.1) - 2025-07-07 + +### Added + +- support inserting documents as a trait ([#563](https://github.com/0xPlaygrounds/rig/pull/563)) + +### Fixed + +- *(rig-787)* discrepancy in rust crate editions ([#519](https://github.com/0xPlaygrounds/rig/pull/519)) + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.1.0](https://github.com/0xPlaygrounds/rig/releases/tag/rig-milvus-v0.1.0) - 2025-06-09 ### Added diff --git a/rig-milvus/Cargo.toml b/rig-milvus/Cargo.toml index f88780b9f..67f5d2820 100644 --- a/rig-milvus/Cargo.toml +++ b/rig-milvus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-milvus" -version = "0.1.0" +version = "0.1.1" edition = { workspace = true } description = "Milvus vector store implementation for the rig framework" license = "MIT" diff --git a/rig-mongodb/CHANGELOG.md b/rig-mongodb/CHANGELOG.md index b294223c5..48c35b924 100644 --- a/rig-mongodb/CHANGELOG.md +++ b/rig-mongodb/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.12](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.11...rig-mongodb-v0.2.12) - 2025-07-07 + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.10...rig-mongodb-v0.2.11) - 2025-06-09 ### Other diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index ec0dfb011..363133dae 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.2.11" +version = "0.2.12" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-neo4j/CHANGELOG.md b/rig-neo4j/CHANGELOG.md index 6aaeadb9e..42e149933 100644 --- a/rig-neo4j/CHANGELOG.md +++ b/rig-neo4j/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.12](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.11...rig-neo4j-v0.2.12) - 2025-07-07 + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.10...rig-neo4j-v0.2.11) - 2025-06-09 ### Other diff --git a/rig-neo4j/Cargo.toml b/rig-neo4j/Cargo.toml index 379661db2..cadfbb253 100644 --- a/rig-neo4j/Cargo.toml +++ b/rig-neo4j/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-neo4j" -version = "0.2.11" +version = "0.2.12" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-postgres/CHANGELOG.md b/rig-postgres/CHANGELOG.md index abbe4d530..2f6298e32 100644 --- a/rig-postgres/CHANGELOG.md +++ b/rig-postgres/CHANGELOG.md @@ -7,6 +7,18 @@ 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-postgres-v0.1.9...rig-postgres-v0.1.10) - 2025-07-07 + +### Added + +- support inserting documents as a trait ([#563](https://github.com/0xPlaygrounds/rig/pull/563)) + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.1.9](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.8...rig-postgres-v0.1.9) - 2025-06-09 ### Other diff --git a/rig-postgres/Cargo.toml b/rig-postgres/Cargo.toml index e428087af..fdd997e57 100644 --- a/rig-postgres/Cargo.toml +++ b/rig-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-postgres" -version = "0.1.9" +version = "0.1.10" edition = { workspace = true } description = "PostgreSQL-based vector store implementation for the rig framework" license = "MIT" diff --git a/rig-qdrant/CHANGELOG.md b/rig-qdrant/CHANGELOG.md index 7b7bdd7b6..dfbc3cfb9 100644 --- a/rig-qdrant/CHANGELOG.md +++ b/rig-qdrant/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.15](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.14...rig-qdrant-v0.1.15) - 2025-07-07 + +### Added + +- support inserting documents as a trait ([#563](https://github.com/0xPlaygrounds/rig/pull/563)) + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.1.14](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.13...rig-qdrant-v0.1.14) - 2025-06-09 ### Other diff --git a/rig-qdrant/Cargo.toml b/rig-qdrant/Cargo.toml index eb97baf87..67dbca8db 100644 --- a/rig-qdrant/Cargo.toml +++ b/rig-qdrant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-qdrant" -version = "0.1.14" +version = "0.1.15" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-scylladb/CHANGELOG.md b/rig-scylladb/CHANGELOG.md new file mode 100644 index 000000000..b7717d5f1 --- /dev/null +++ b/rig-scylladb/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-scylladb-v0.1.0...rig-scylladb-v0.1.1) - 2025-07-07 + +### Added + +- support inserting documents as a trait ([#563](https://github.com/0xPlaygrounds/rig/pull/563)) diff --git a/rig-scylladb/Cargo.toml b/rig-scylladb/Cargo.toml index ffd721ad0..7c2455dae 100644 --- a/rig-scylladb/Cargo.toml +++ b/rig-scylladb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-scylladb" -version = "0.1.0" +version = "0.1.1" edition = { workspace = true } license = "MIT" readme = "README.md" diff --git a/rig-sqlite/CHANGELOG.md b/rig-sqlite/CHANGELOG.md index 61a24cd49..c3fd039bf 100644 --- a/rig-sqlite/CHANGELOG.md +++ b/rig-sqlite/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.12](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.11...rig-sqlite-v0.1.12) - 2025-07-07 + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.1.11](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.10...rig-sqlite-v0.1.11) - 2025-06-09 ### Other diff --git a/rig-sqlite/Cargo.toml b/rig-sqlite/Cargo.toml index e0c09aca0..7579468c9 100644 --- a/rig-sqlite/Cargo.toml +++ b/rig-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-sqlite" -version = "0.1.11" +version = "0.1.12" edition = { workspace = true } description = "SQLite-based vector store implementation for the rig framework" license = "MIT" diff --git a/rig-surrealdb/CHANGELOG.md b/rig-surrealdb/CHANGELOG.md index 2822a01e0..cd1734d52 100644 --- a/rig-surrealdb/CHANGELOG.md +++ b/rig-surrealdb/CHANGELOG.md @@ -7,6 +7,18 @@ 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-surrealdb-v0.1.6...rig-surrealdb-v0.1.7) - 2025-07-07 + +### Added + +- support inserting documents as a trait ([#563](https://github.com/0xPlaygrounds/rig/pull/563)) + +### Other + +- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539)) +- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538)) +- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542)) + ## [0.1.6](https://github.com/0xPlaygrounds/rig/compare/rig-surrealdb-v0.1.5...rig-surrealdb-v0.1.6) - 2025-06-09 ### Other diff --git a/rig-surrealdb/Cargo.toml b/rig-surrealdb/Cargo.toml index 8ff678854..d7dbc7a9d 100644 --- a/rig-surrealdb/Cargo.toml +++ b/rig-surrealdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-surrealdb" -version = "0.1.6" +version = "0.1.7" edition = { workspace = true } description = "SurrealDB vector store implementation for the rig framework" license = "MIT"