Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 13, 2024
1 parent e902cb7 commit 64376f9
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 19 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@

All notable changes to this project will be documented in this file.

## [0.12.0](https://github.com/bosun-ai/swiftide/releases/tag/0.12.0) - 2024-09-13

### Added

- [e902cb7](https://github.com/bosun-ai/swiftide/commit/e902cb7487221d3e88f13d88532da081e6ef8611) *(query)* Add support for filters in SimilaritySingleEmbedding ([#298](https://github.com/bosun-ai/swiftide/pull/298))

- [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))


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.11.1...0.12.0



## [0.11.1](https://github.com/bosun-ai/swiftide/releases/tag/0.11.1) - 2024-09-10

### Fixed
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.11.1"
version = "0.12.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions swiftide-indexing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.11" }
swiftide-macros = { path = "../swiftide-macros", version = "0.11" }
swiftide-core = { path = "../swiftide-core", version = "0.12" }
swiftide-macros = { path = "../swiftide-macros", version = "0.12" }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions swiftide-integrations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.11" }
swiftide-macros = { path = "../swiftide-macros", version = "0.11" }
swiftide-core = { path = "../swiftide-core", version = "0.12" }
swiftide-macros = { path = "../swiftide-macros", version = "0.12" }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion swiftide-query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.0" }

[dev-dependencies]
swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }
Expand Down
8 changes: 4 additions & 4 deletions swiftide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ homepage.workspace = true

[dependencies]
# Local dependencies
swiftide-core = { path = "../swiftide-core", version = "0.11" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.11" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.11" }
swiftide-query = { path = "../swiftide-query", version = "0.11" }
swiftide-core = { path = "../swiftide-core", version = "0.12" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.12" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.12" }
swiftide-query = { path = "../swiftide-query", version = "0.12" }

[features]
default = []
Expand Down

0 comments on commit 64376f9

Please sign in to comment.