From 1e8bf333a304f958d60344b9cd2a6b7d483dd4f8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 19:02:47 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 4 ++-- rig-core/CHANGELOG.md | 24 ++++++++++++++++++++++++ rig-core/Cargo.toml | 2 +- rig-mongodb/CHANGELOG.md | 6 ++++++ rig-mongodb/Cargo.toml | 4 ++-- 5 files changed, 35 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 76e03fd9..8e503e64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1211,7 +1211,7 @@ dependencies = [ [[package]] name = "rig-core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "futures", @@ -1228,7 +1228,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "futures", diff --git a/rig-core/CHANGELOG.md b/rig-core/CHANGELOG.md index cba0a40c..83297d3c 100644 --- a/rig-core/CHANGELOG.md +++ b/rig-core/CHANGELOG.md @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.1.0...rig-core-v0.2.0) - 2024-10-01 + +### Added + +- anthropic models + +### Fixed + +- *(context)* displaying documents should be deterministic (sorted by alpha) +- *(context)* spin out helper method + add tests +- move context documents to user prompt message +- adjust version const naming +- implement review suggestions + renaming +- add `completion_request.documents` to `chat_history` +- adjust API to be cleaner + add docstrings + +### Other + +- Merge pull request [#43](https://github.com/0xPlaygrounds/rig/pull/43) from 0xPlaygrounds/fix/context-documents +- Merge pull request [#27](https://github.com/0xPlaygrounds/rig/pull/27) from 0xPlaygrounds/feat/anthropic +- Fix docstrings +- Deprecate RagAgent and Model in favor of versatile Agent +- Make RagAgent VectorStoreIndex dynamic trait objects + ## [0.1.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.0.7...rig-core-v0.1.0) - 2024-09-16 ### Added diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index dde7027e..7af2e6ce 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/rig-mongodb/CHANGELOG.md b/rig-mongodb/CHANGELOG.md index bfad6746..4dc00037 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.1](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.1.0...rig-mongodb-v0.1.1) - 2024-10-01 + +### Other + +- updated the following local packages: rig-core + ## [0.1.0](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.0.7...rig-mongodb-v0.1.0) - 2024-09-16 ### Other diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index 05d259ac..81450481 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.1.0" +version = "0.1.1" 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.1.0" } +rig-core = { path = "../rig-core", version = "0.2.0" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = "0.1.40"