diff --git a/Cargo.lock b/Cargo.lock index 7f24a15b..dece346f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2324,7 +2324,7 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" [[package]] name = "swiftide" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-openai", diff --git a/swiftide/CHANGELOG.md b/swiftide/CHANGELOG.md index 6ec1d3c0..b033e761 100644 --- a/swiftide/CHANGELOG.md +++ b/swiftide/CHANGELOG.md @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/bosun-ai/swiftide/compare/swiftide-v0.1.0...swiftide-v0.2.0) - 2024-06-13 + +### Added +- api improvements with example ([#10](https://github.com/bosun-ai/swiftide/pull/10)) +- feat/readme improvements ([#11](https://github.com/bosun-ai/swiftide/pull/11)) + +### Other +- *(swiftide)* documented file swiftide/src/integrations/treesitter/supported_languages.rs ([#26](https://github.com/bosun-ai/swiftide/pull/26)) +- *(swiftide)* documented file swiftide/src/ingestion/mod.rs ([#28](https://github.com/bosun-ai/swiftide/pull/28)) +- *(swiftide)* documented file swiftide/src/integrations/qdrant/ingestion_node.rs ([#20](https://github.com/bosun-ai/swiftide/pull/20)) +- *(swiftide)* documented file swiftide/src/integrations/qdrant/mod.rs ([#22](https://github.com/bosun-ai/swiftide/pull/22)) +- *(swiftide)* documented file swiftide/src/integrations/redis/mod.rs ([#23](https://github.com/bosun-ai/swiftide/pull/23)) +- *(swiftide)* documented file swiftide/src/integrations/qdrant/persist.rs ([#24](https://github.com/bosun-ai/swiftide/pull/24)) +- *(swiftide)* documented file swiftide/src/integrations/redis/node_cache.rs ([#29](https://github.com/bosun-ai/swiftide/pull/29)) +- *(swiftide)* documented file swiftide/src/integrations/treesitter/splitter.rs ([#30](https://github.com/bosun-ai/swiftide/pull/30)) +- *(swiftide)* documented file swiftide/src/integrations/openai/mod.rs ([#21](https://github.com/bosun-ai/swiftide/pull/21)) +- *(swiftide)* documented file swiftide/src/ingestion/ingestion_node.rs ([#15](https://github.com/bosun-ai/swiftide/pull/15)) +- *(swiftide)* documented file swiftide/src/ingestion/ingestion_stream.rs ([#16](https://github.com/bosun-ai/swiftide/pull/16)) +- *(swiftide)* documented file swiftide/src/ingestion/ingestion_pipeline.rs ([#14](https://github.com/bosun-ai/swiftide/pull/14)) +- release v0.1.0 ([#8](https://github.com/bosun-ai/swiftide/pull/8)) + ## [0.1.0](https://github.com/bosun-ai/swiftide/releases/tag/v0.1.0) - 2024-06-13 ### Added diff --git a/swiftide/Cargo.toml b/swiftide/Cargo.toml index 1ebc6ef2..27b513ef 100644 --- a/swiftide/Cargo.toml +++ b/swiftide/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swiftide" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT" readme = "../README.md"