From 1e1f9b9c9b27c0c5ea8c9636bda69d2e05bca88e Mon Sep 17 00:00:00 2001 From: "Swabbie (Bosun)" <155570396+SwabbieBosun@users.noreply.github.com> Date: Thu, 12 Dec 2024 00:43:12 +0100 Subject: [PATCH] chore: release v0.14.4 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- swiftide-query/Cargo.toml | 2 +- 4 files changed, 43 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index defacaff..8dc151cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,37 @@ All notable changes to this project will be documented in this file. +## [0.14.4](https://github.com/bosun-ai/swiftide/compare/v0.14.3...v0.14.4) - 2024-12-11 + +### New features + +- [7211559](https://github.com/bosun-ai/swiftide/commit/7211559936d8b5e16a3b42f9c90b42a39426be8a) *(agents)* **EXPERIMENTAL** Agents in Swiftide (#463) + +````text +Agents are coming to Swiftide! We are still ironing out all the kinks, + while we make it ready for a proper release. You can already experiment + with agents, see the rustdocs for documentation, and an example in + `/examples`, and feel free to contact us via github or discord. Better + documentation, examples, and tutorials are coming soon. + + Run completions in a loop, define tools with two handy macros, customize + the agent by hooking in on lifecycle events, and much more. + + Besides documentation, expect a big release for what we build this for + soon! 🎉 +```` + +- [3751f49](https://github.com/bosun-ai/swiftide/commit/3751f49201c71398144a8913a4443f452534def2) *(query)* Add support for single embedding retrieval with PGVector (#406) + +### Miscellaneous + +- [5ce4d21](https://github.com/bosun-ai/swiftide/commit/5ce4d21725ff9b0bb7f9da8fe026075fde9fc9a5) Clippy and deps fixes for 1.83 (#467) + + +**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.14.3...0.14.4 + + + ## [0.14.3](https://github.com/bosun-ai/swiftide/compare/v0.14.2...v0.14.3) - 2024-11-20 ### New features diff --git a/Cargo.lock b/Cargo.lock index 2203e87b..25f1e701 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1280,7 +1280,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "benchmarks" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "criterion", @@ -8424,7 +8424,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swiftide" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "arrow-array", @@ -8451,7 +8451,7 @@ dependencies = [ [[package]] name = "swiftide-agents" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "async-trait", @@ -8476,7 +8476,7 @@ dependencies = [ [[package]] name = "swiftide-core" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "async-trait", @@ -8504,7 +8504,7 @@ dependencies = [ [[package]] name = "swiftide-examples" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "fluvio", @@ -8525,7 +8525,7 @@ dependencies = [ [[package]] name = "swiftide-indexing" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "async-trait", @@ -8553,7 +8553,7 @@ dependencies = [ [[package]] name = "swiftide-integrations" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "arrow", @@ -8611,7 +8611,7 @@ dependencies = [ [[package]] name = "swiftide-macros" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "async-trait", @@ -8633,7 +8633,7 @@ dependencies = [ [[package]] name = "swiftide-query" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "async-trait", @@ -8653,7 +8653,7 @@ dependencies = [ [[package]] name = "swiftide-test-utils" -version = "0.14.3" +version = "0.14.4" dependencies = [ "anyhow", "async-openai", diff --git a/Cargo.toml b/Cargo.toml index b197a4e5..b3e9fd5d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ default-members = ["swiftide", "swiftide-*"] resolver = "2" [workspace.package] -version = "0.14.3" +version = "0.14.4" edition = "2021" license = "MIT" readme = "README.md" diff --git a/swiftide-query/Cargo.toml b/swiftide-query/Cargo.toml index caf0e186..fec827fe 100644 --- a/swiftide-query/Cargo.toml +++ b/swiftide-query/Cargo.toml @@ -24,7 +24,7 @@ serde = { workspace = true } serde_json = { workspace = true } # Internal -swiftide-core = { path = "../swiftide-core", version = "0.14.3" } +swiftide-core = { path = "../swiftide-core", version = "0.14.4" } [dev-dependencies] swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }