diff --git a/CHANGELOG.md b/CHANGELOG.md index 21aabab4..750af579 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,29 @@ All notable changes to this project will be documented in this file. +## [0.9.2](https://github.com/bosun-ai/swiftide/releases/tag/0.9.2) - 2024-09-04 + +### Added + +- [84e9bae](https://github.com/bosun-ai/swiftide/commit/84e9baefb366f0a949ae7dcbdd8f97931da0b4be) *(indexing)* Add chunker for text with text_splitter ([#270](https://github.com/bosun-ai/swiftide/pull/270)) + +- [387fbf2](https://github.com/bosun-ai/swiftide/commit/387fbf29c2bce06284548f9af146bb3969562761) *(query)* Hybrid search for qdrant in query pipeline ([#260](https://github.com/bosun-ai/swiftide/pull/260)) + +### Fixed + +- [6e92b12](https://github.com/bosun-ai/swiftide/commit/6e92b12faa020f12ef5e770282e7b2e854f4910c) *(deps)* Update rust crate text-splitter to 0.16 ([#267](https://github.com/bosun-ai/swiftide/pull/267)) + +### Other + +- [1dc4c90](https://github.com/bosun-ai/swiftide/commit/1dc4c90436c9c8c8d0eb080e300afce53090c73e) *(readme)* Add new blog links + +- [064c7e1](https://github.com/bosun-ai/swiftide/commit/064c7e157775a7aaf9628a39f941be35ce0be99a) *(readme)* Update intro + + +**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.9.1...0.9.2 + + + ## [0.9.1](https://github.com/bosun-ai/swiftide/releases/tag/0.9.1) - 2024-09-01 ### Added diff --git a/Cargo.lock b/Cargo.lock index abfa99ee..10701ec1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1252,7 +1252,7 @@ dependencies = [ [[package]] name = "benchmarks" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "criterion", @@ -2706,7 +2706,7 @@ dependencies = [ [[package]] name = "examples" -version = "0.9.1" +version = "0.9.2" dependencies = [ "fluvio", "qdrant-client", @@ -7408,7 +7408,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swiftide" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "arrow-array", @@ -7434,7 +7434,7 @@ dependencies = [ [[package]] name = "swiftide-core" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "async-trait", @@ -7458,7 +7458,7 @@ dependencies = [ [[package]] name = "swiftide-indexing" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "async-trait", @@ -7486,7 +7486,7 @@ dependencies = [ [[package]] name = "swiftide-integrations" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "arrow-array", @@ -7536,7 +7536,7 @@ dependencies = [ [[package]] name = "swiftide-macros" -version = "0.9.1" +version = "0.9.2" dependencies = [ "darling", "proc-macro2", @@ -7546,7 +7546,7 @@ dependencies = [ [[package]] name = "swiftide-query" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "async-trait", @@ -7572,7 +7572,7 @@ dependencies = [ [[package]] name = "swiftide-test-utils" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "async-openai", diff --git a/Cargo.toml b/Cargo.toml index 73dbaf7a..7bf2fb2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.9.1" +version = "0.9.2" edition = "2021" license = "MIT" readme = "README.md" diff --git a/swiftide-query/Cargo.toml b/swiftide-query/Cargo.toml index 981a70b1..76f32e2d 100644 --- a/swiftide-query/Cargo.toml +++ b/swiftide-query/Cargo.toml @@ -25,7 +25,7 @@ serde = { workspace = true } serde_json = { workspace = true } # Internal -swiftide-core = { path = "../swiftide-core", version = "0.9.1" } +swiftide-core = { path = "../swiftide-core", version = "0.9.2" } [dev-dependencies] swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }