From 21713706325ac9b727e9ffd71aad0c53deb96669 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:21:05 -0500 Subject: [PATCH] chore: release (#144) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++------ rig-core/CHANGELOG.md | 16 ++++++++++++++++ rig-core/Cargo.toml | 2 +- rig-lancedb/CHANGELOG.md | 6 ++++++ rig-lancedb/Cargo.toml | 6 +++--- rig-mongodb/CHANGELOG.md | 11 +++++++++++ rig-mongodb/Cargo.toml | 4 ++-- rig-neo4j/CHANGELOG.md | 6 ++++++ rig-neo4j/Cargo.toml | 4 ++-- rig-qdrant/CHANGELOG.md | 6 ++++++ rig-qdrant/Cargo.toml | 4 ++-- rig-sqlite/CHANGELOG.md | 6 ++++++ rig-sqlite/Cargo.toml | 4 ++-- 13 files changed, 69 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59e0a63b..6c86bb4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4805,7 +4805,7 @@ checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" [[package]] name = "rig-core" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "assert_fs", @@ -4838,7 +4838,7 @@ dependencies = [ [[package]] name = "rig-lancedb" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "arrow-array", @@ -4852,7 +4852,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "futures", @@ -4868,7 +4868,7 @@ dependencies = [ [[package]] name = "rig-neo4j" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "futures", @@ -4886,7 +4886,7 @@ dependencies = [ [[package]] name = "rig-qdrant" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "qdrant-client", @@ -4899,7 +4899,7 @@ dependencies = [ [[package]] name = "rig-sqlite" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "chrono", diff --git a/rig-core/CHANGELOG.md b/rig-core/CHANGELOG.md index 70a469c2..08059ef4 100644 --- a/rig-core/CHANGELOG.md +++ b/rig-core/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.5.0...rig-core-v0.6.0) - 2024-12-19 + +### Added + +- agent pipelines (#131) +- *(rig-anthropic)* Add default `max_tokens` for standard models (#151) + +### Fixed + +- *(openai)* Make integration more general (#156) + +### Other + +- *(ollama-example)* implement example showcasing ollama (#148) +- *(embeddings)* add embedding distance calculator module (#142) + ## [0.5.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.4.1...rig-core-v0.5.0) - 2024-12-03 ### Added diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index 0af6b71d..afb3c1d9 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.5.0" +version = "0.6.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/rig-lancedb/CHANGELOG.md b/rig-lancedb/CHANGELOG.md index 9db130b4..37798791 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.1](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.0...rig-lancedb-v0.2.1) - 2024-12-19 + +### Other + +- *(integration-tests)* LanceDB (#136) + ## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.1.2...rig-lancedb-v0.2.0) - 2024-12-03 ### Added diff --git a/rig-lancedb/Cargo.toml b/rig-lancedb/Cargo.toml index bf97fbe6..3936b9a0 100644 --- a/rig-lancedb/Cargo.toml +++ b/rig-lancedb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-lancedb" -version = "0.2.0" +version = "0.2.1" 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.5.0" } +rig-core = { path = "../rig-core", version = "0.6.0" } arrow-array = "52.2.0" serde_json = "1.0.128" serde = "1.0.210" @@ -33,4 +33,4 @@ required-features = ["rig-core/derive"] [[test]] name = "integration_tests" -required-features = ["rig-core/derive"] \ No newline at end of file +required-features = ["rig-core/derive"] diff --git a/rig-mongodb/CHANGELOG.md b/rig-mongodb/CHANGELOG.md index 0668b083..aee3f3fa 100644 --- a/rig-mongodb/CHANGELOG.md +++ b/rig-mongodb/CHANGELOG.md @@ -7,6 +7,17 @@ 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-mongodb-v0.2.0...rig-mongodb-v0.2.1) - 2024-12-19 + +### Added + +- agent pipelines (#131) + +### Other + +- *(rig-mongodb)* fix mongodb flaky integration test (#154) +- *(rig-mongodb)* fix flaky test (#153) + ## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.1.5...rig-mongodb-v0.2.0) - 2024-12-03 ### Added diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index 3de846cf..5ea6fe6f 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.2.0" +version = "0.2.1" 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.5.0" } +rig-core = { path = "../rig-core", version = "0.6.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 ae175753..1abf0830 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.1](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.0...rig-neo4j-v0.2.1) - 2024-12-19 + +### Other + +- update Cargo.lock dependencies + ## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.1.2...rig-neo4j-v0.2.0) - 2024-12-03 ### Added diff --git a/rig-neo4j/Cargo.toml b/rig-neo4j/Cargo.toml index 8f3f49ea..8cc39952 100644 --- a/rig-neo4j/Cargo.toml +++ b/rig-neo4j/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-neo4j" -version = "0.2.0" +version = "0.2.1" 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.5.0" } +rig-core = { path = "../rig-core", version = "0.6.0" } 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 57d1360b..362d7790 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.4](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.3...rig-qdrant-v0.1.4) - 2024-12-19 + +### Other + +- update Cargo.lock dependencies + ## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.2...rig-qdrant-v0.1.3) - 2024-12-03 ### Added diff --git a/rig-qdrant/Cargo.toml b/rig-qdrant/Cargo.toml index bbafad65..1b3eaa73 100644 --- a/rig-qdrant/Cargo.toml +++ b/rig-qdrant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-qdrant" -version = "0.1.3" +version = "0.1.4" 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.5.0" } +rig-core = { path = "../rig-core", version = "0.6.0" } 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 bd851aae..7dc3619e 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.1](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.0...rig-sqlite-v0.1.1) - 2024-12-19 + +### Other + +- update Cargo.lock dependencies + ## [0.1.0](https://github.com/0xPlaygrounds/rig/releases/tag/rig-sqlite-v0.1.0) - 2024-12-03 ### Added diff --git a/rig-sqlite/Cargo.toml b/rig-sqlite/Cargo.toml index be92f8ab..6a761cde 100644 --- a/rig-sqlite/Cargo.toml +++ b/rig-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-sqlite" -version = "0.1.0" +version = "0.1.1" 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.5.0", features = ["derive"] } +rig-core = { path = "../rig-core", version = "0.6.0", features = ["derive"] } rusqlite = { version = "0.32", features = ["bundled"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"