diff --git a/CHANGELOG.md b/CHANGELOG.md index cd1a8b88..2878c4f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.13.4](https://github.com/bosun-ai/swiftide/compare/v0.13.3...v0.13.4) - 2024-10-21 + +### Bug fixes + +- [47455fb](https://github.com/bosun-ai/swiftide/commit/47455fb04197a4b51142e2fb4c980e42ac54d11e) *(indexing)* Visibility of ChunkMarkdown builder should be public + +- [2b3b401](https://github.com/bosun-ai/swiftide/commit/2b3b401dcddb2cb32214850b9b4dbb0481943d38) *(indexing)* Improve splitters consistency and provide defaults ([#403](https://github.com/bosun-ai/swiftide/pull/403)) + + +**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.13.3...0.13.4 + + # Changelog All notable changes to this project will be documented in this file. diff --git a/Cargo.lock b/Cargo.lock index c914cf2c..d1606432 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1267,7 +1267,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "benchmarks" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "criterion", @@ -2828,7 +2828,7 @@ dependencies = [ [[package]] name = "examples" -version = "0.13.3" +version = "0.13.4" dependencies = [ "fluvio", "qdrant-client", @@ -8004,7 +8004,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swiftide" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "arrow-array", @@ -8031,7 +8031,7 @@ dependencies = [ [[package]] name = "swiftide-core" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "async-trait", @@ -8057,7 +8057,7 @@ dependencies = [ [[package]] name = "swiftide-indexing" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "async-trait", @@ -8085,7 +8085,7 @@ dependencies = [ [[package]] name = "swiftide-integrations" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "arrow", @@ -8143,7 +8143,7 @@ dependencies = [ [[package]] name = "swiftide-macros" -version = "0.13.3" +version = "0.13.4" dependencies = [ "darling", "proc-macro2", @@ -8153,7 +8153,7 @@ dependencies = [ [[package]] name = "swiftide-query" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "async-trait", @@ -8179,7 +8179,7 @@ dependencies = [ [[package]] name = "swiftide-test-utils" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "async-openai", diff --git a/Cargo.toml b/Cargo.toml index 367efd6a..217f872f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ default-members = ["swiftide", "swiftide-*"] resolver = "2" [workspace.package] -version = "0.13.3" +version = "0.13.4" edition = "2021" license = "MIT" readme = "README.md" diff --git a/swiftide-query/Cargo.toml b/swiftide-query/Cargo.toml index 9c991249..7036d6df 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.13.3" } +swiftide-core = { path = "../swiftide-core", version = "0.13.4" } [dev-dependencies] swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }