From 8971562d5dcb5ed07e51415472063c1596d9ecd1 Mon Sep 17 00:00:00 2001 From: "Swabbie (Bosun)" <155570396+SwabbieBosun@users.noreply.github.com> Date: Tue, 5 Nov 2024 16:11:16 +0100 Subject: [PATCH] chore: release v0.14.2 --- CHANGELOG.md | 23 +++++++++++++++++++++++ Cargo.lock | 18 +++++++++--------- Cargo.toml | 2 +- swiftide-query/Cargo.toml | 2 +- 4 files changed, 34 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e0b0467..30ad9c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,29 @@ All notable changes to this project will be documented in this file. +## [0.14.2](https://github.com/bosun-ai/swiftide/compare/v0.14.1...v0.14.2) - 2024-11-05 + +### Bug fixes + +- [3924322](https://github.com/bosun-ai/swiftide/commit/39243224d739a76cf2b60204fc67819055b7bc6f) *(querying)* Query pipeline is now properly send and sync when possible ([#425](https://github.com/bosun-ai/swiftide/pull/425)) + +### Miscellaneous + +- [52198f7](https://github.com/bosun-ai/swiftide/commit/52198f7fe76376a42c1fec8945bda4bf3e6971d4) Improve local dev build speed ([#434](https://github.com/bosun-ai/swiftide/pull/434)) + +````text +- **Tokio on rt-multi-thread only** + - **Remove manual checks from lancedb integration test** + - **Ensure all deps in workspace manifest** + - **Remove unused deps** + - **Remove examples and benchmarks from default members** +```` + + +**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.14.1...0.14.2 + + + ## [0.14.1](https://github.com/bosun-ai/swiftide/compare/v0.14.0...v0.14.1) - 2024-10-27 ### Bug fixes diff --git a/Cargo.lock b/Cargo.lock index 490a33ba..0b51b2db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1261,7 +1261,7 @@ dependencies = [ [[package]] name = "benchmarks" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "criterion", @@ -7576,7 +7576,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swiftide" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "arrow-array", @@ -7600,7 +7600,7 @@ dependencies = [ [[package]] name = "swiftide-core" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "async-trait", @@ -7626,7 +7626,7 @@ dependencies = [ [[package]] name = "swiftide-examples" -version = "0.14.1" +version = "0.14.2" dependencies = [ "fluvio", "qdrant-client", @@ -7640,7 +7640,7 @@ dependencies = [ [[package]] name = "swiftide-indexing" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "async-trait", @@ -7668,7 +7668,7 @@ dependencies = [ [[package]] name = "swiftide-integrations" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "arrow", @@ -7724,7 +7724,7 @@ dependencies = [ [[package]] name = "swiftide-macros" -version = "0.14.1" +version = "0.14.2" dependencies = [ "darling", "proc-macro2", @@ -7734,7 +7734,7 @@ dependencies = [ [[package]] name = "swiftide-query" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "async-trait", @@ -7754,7 +7754,7 @@ dependencies = [ [[package]] name = "swiftide-test-utils" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "async-openai", diff --git a/Cargo.toml b/Cargo.toml index 089b7c62..36a927c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ default-members = ["swiftide", "swiftide-*"] resolver = "2" [workspace.package] -version = "0.14.1" +version = "0.14.2" edition = "2021" license = "MIT" readme = "README.md" diff --git a/swiftide-query/Cargo.toml b/swiftide-query/Cargo.toml index c9a5191e..1029ff05 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.1" } +swiftide-core = { path = "../swiftide-core", version = "0.14.2" } [dev-dependencies] swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }