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 1074799c..5ffb8dbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1261,7 +1261,7 @@ dependencies = [ [[package]] name = "benchmarks" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "criterion", @@ -2777,7 +2777,7 @@ dependencies = [ [[package]] name = "examples" -version = "0.13.3" +version = "0.13.4" dependencies = [ "fluvio", "qdrant-client", @@ -7557,7 +7557,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swiftide" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "arrow-array", @@ -7584,7 +7584,7 @@ dependencies = [ [[package]] name = "swiftide-core" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "async-trait", @@ -7610,7 +7610,7 @@ dependencies = [ [[package]] name = "swiftide-indexing" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "async-trait", @@ -7638,7 +7638,7 @@ dependencies = [ [[package]] name = "swiftide-integrations" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "arrow", @@ -7694,7 +7694,7 @@ dependencies = [ [[package]] name = "swiftide-macros" -version = "0.13.3" +version = "0.13.4" dependencies = [ "darling", "proc-macro2", @@ -7704,7 +7704,7 @@ dependencies = [ [[package]] name = "swiftide-query" -version = "0.13.3" +version = "0.13.4" dependencies = [ "anyhow", "async-trait", @@ -7730,7 +7730,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 baefad4a..43a0e718 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"] }