diff --git a/CHANGELOG.md b/CHANGELOG.md index c82362e2..8fd2de53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,37 @@ All notable changes to this project will be documented in this file. +## [0.11.2](https://github.com/bosun-ai/swiftide/releases/tag/0.11.2) - 2024-09-12 + +### Added + +- [f158960](https://github.com/bosun-ai/swiftide/commit/f1589604d1e0cb42a07d5a48080e3d7ecb90ee38) *(uncategorized)* Major performance improvements ([#291](https://github.com/bosun-ai/swiftide/pull/291)) + +### Fixed + +- [45d8a57](https://github.com/bosun-ai/swiftide/commit/45d8a57d1afb4f16ad76b15236308d753cf45743) *(ci)* Use llm-cov preview via nightly and improve test coverage ([#289](https://github.com/bosun-ai/swiftide/pull/289)) + +- [501dd39](https://github.com/bosun-ai/swiftide/commit/501dd391aed6fe6bdec1a2baeba114489604f153) *(deps)* Update rust crate redis to 0.27 ([#294](https://github.com/bosun-ai/swiftide/pull/294)) + +- [f95f806](https://github.com/bosun-ai/swiftide/commit/f95f806a0701b14a3cad5da307c27c01325a264d) *(indexing)* Debugging nodes should respect utf8 char boundaries + +- [f8314cc](https://github.com/bosun-ai/swiftide/commit/f8314ccdbe16ad7e6691899dd01f81a61b20180f) *(indexing)* Limit logged chunk to max 100 chars ([#292](https://github.com/bosun-ai/swiftide/pull/292)) + +- [9464ca1](https://github.com/bosun-ai/swiftide/commit/9464ca123f08d8dfba3f1bfabb57e9af97018534) *(uncategorized)* Bad embed error propagation ([#293](https://github.com/bosun-ai/swiftide/pull/293)) + +- [8595553](https://github.com/bosun-ai/swiftide/commit/859555334d7e4129215b9f084d9f9840fac5ce36) *(uncategorized)* Implement into_stream_boxed for all loaders + +### Other + +- [37c4bd9](https://github.com/bosun-ai/swiftide/commit/37c4bd9f9ac97646adb2c4b99b8f7bf0bee4c794) *(deps)* Update treesitter ([#296](https://github.com/bosun-ai/swiftide/pull/296)) + +- [0000000](https://github.com/bosun-ai/swiftide/commit/0000000) *(uncategorized)* Update Cargo.toml dependencies + + +**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.11.1...0.11.2 + + + ## [0.11.1](https://github.com/bosun-ai/swiftide/releases/tag/0.11.1) - 2024-09-10 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index a7eeaa02..a9270f18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1253,7 +1253,7 @@ dependencies = [ [[package]] name = "benchmarks" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "criterion", @@ -2707,7 +2707,7 @@ dependencies = [ [[package]] name = "examples" -version = "0.11.1" +version = "0.11.2" dependencies = [ "fluvio", "qdrant-client", @@ -7440,7 +7440,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swiftide" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "arrow-array", @@ -7466,7 +7466,7 @@ dependencies = [ [[package]] name = "swiftide-core" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "async-trait", @@ -7490,7 +7490,7 @@ dependencies = [ [[package]] name = "swiftide-indexing" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "async-trait", @@ -7518,7 +7518,7 @@ dependencies = [ [[package]] name = "swiftide-integrations" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "arrow", @@ -7570,7 +7570,7 @@ dependencies = [ [[package]] name = "swiftide-macros" -version = "0.11.1" +version = "0.11.2" dependencies = [ "darling", "proc-macro2", @@ -7580,7 +7580,7 @@ dependencies = [ [[package]] name = "swiftide-query" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "async-trait", @@ -7606,7 +7606,7 @@ dependencies = [ [[package]] name = "swiftide-test-utils" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "async-openai", diff --git a/Cargo.toml b/Cargo.toml index 7aec59d7..b8381bb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.11.1" +version = "0.11.2" edition = "2021" license = "MIT" readme = "README.md" diff --git a/swiftide-query/Cargo.toml b/swiftide-query/Cargo.toml index 62ec6be6..969cd751 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.11.1" } +swiftide-core = { path = "../swiftide-core", version = "0.11.2" } [dev-dependencies] swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }