From 203cde817b7f20b51c40b015af975eb7c1f02133 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 14:04:03 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- rig-core/CHANGELOG.md | 12 ++++++++++++ rig-core/Cargo.toml | 2 +- rig-lancedb/CHANGELOG.md | 6 ++++++ rig-lancedb/Cargo.toml | 4 ++-- rig-mongodb/CHANGELOG.md | 6 ++++++ rig-mongodb/Cargo.toml | 4 ++-- 7 files changed, 32 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 14b29d9e..dc20069f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4119,7 +4119,7 @@ dependencies = [ [[package]] name = "rig-core" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "assert_fs", @@ -4139,7 +4139,7 @@ dependencies = [ [[package]] name = "rig-lancedb" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "arrow-array", @@ -4153,7 +4153,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "futures", diff --git a/rig-core/CHANGELOG.md b/rig-core/CHANGELOG.md index 0d5fa427..7f53f244 100644 --- a/rig-core/CHANGELOG.md +++ b/rig-core/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.3.0...rig-core-v0.3.1) - 2024-11-01 + +### Fixed + +- *(loaders)* merge conflict + +### Other + +- Merge pull request [#55](https://github.com/0xPlaygrounds/rig/pull/55) from 0xPlaygrounds/feat/file-loaders +- *(loaders)* fix error PdfLoaderError +- *(loaders)* improve docstrings, visibility on internal traits, iterator usage + ## [0.3.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.2.1...rig-core-v0.3.0) - 2024-10-24 ### Added diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index 4b1a3a01..d37c729f 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "MIT" readme = "README.md" diff --git a/rig-lancedb/CHANGELOG.md b/rig-lancedb/CHANGELOG.md index 50fd907a..2ec6da11 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.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.1.0...rig-lancedb-v0.1.1) - 2024-11-01 + +### Other + +- update Cargo.lock dependencies + ## [0.1.0](https://github.com/0xPlaygrounds/rig/releases/tag/rig-lancedb-v0.1.0) - 2024-10-24 ### Added diff --git a/rig-lancedb/Cargo.toml b/rig-lancedb/Cargo.toml index 1d68943c..966a64d1 100644 --- a/rig-lancedb/Cargo.toml +++ b/rig-lancedb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-lancedb" -version = "0.1.0" +version = "0.1.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.3.0" } +rig-core = { path = "../rig-core", version = "0.3.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 8760c2f6..b167c4e2 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.1.4](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.1.3...rig-mongodb-v0.1.4) - 2024-11-01 + +### Other + +- update Cargo.lock dependencies + ## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.1.2...rig-mongodb-v0.1.3) - 2024-10-24 ### Fixed diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index 76943d14..d068d1f3 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.1.3" +version = "0.1.4" edition = "2021" license = "MIT" readme = "README.md" @@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] futures = "0.3.30" mongodb = "2.8.2" -rig-core = { path = "../rig-core", version = "0.3.0" } +rig-core = { path = "../rig-core", version = "0.3.1" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = "0.1.40"