Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

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

## [0.33.0](https://github.com/bosun-ai/swiftide/compare/v0.32.1...v0.33.0) - 2025-12-03

### New features

- [65d44f2](https://github.com/bosun-ai/swiftide/commit/65d44f2c4656eb20545750798a18fb877162f043) *(query)* Add `original` and `current` question to `answers::Simple`

- [283fbcf](https://github.com/bosun-ai/swiftide/commit/283fbcfa9b161f99e216b2627301814e279c8c49) Add `scoped_owned` variant for owned executors with working dir

### Bug fixes

- [b28a1bb](https://github.com/bosun-ai/swiftide/commit/b28a1bb9b0b982165d9f5f641de43a4f147b90a1) *(query)* Use current query in answers::Simple only if changed post retrieval

- [5d65545](https://github.com/bosun-ai/swiftide/commit/5d65545fa8e8987dc5b7200aa211390438fa029a) *(query)* Do not clear transformed query after retrieval


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.32.1...0.33.0



## [0.32.1](https://github.com/bosun-ai/swiftide/compare/v0.32.0...v0.32.1) - 2025-11-08

### New features
Expand Down
22 changes: 11 additions & 11 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 @@ -4,7 +4,7 @@ default-members = ["swiftide", "swiftide-*"]
resolver = "2"

[workspace.package]
version = "0.32.1"
version = "0.33.0"
edition = "2024"
license = "MIT"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions swiftide-agents/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.32" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.32" }
swiftide-core = { path = "../swiftide-core", version = "0.33" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.33" }
anyhow.workspace = true
async-trait.workspace = true
dyn-clone.workspace = true
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.32" }
swiftide-macros = { path = "../swiftide-macros", version = "0.32" }
swiftide-core = { path = "../swiftide-core", version = "0.33" }
swiftide-macros = { path = "../swiftide-macros", version = "0.33" }

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.32" }
swiftide-macros = { path = "../swiftide-macros", version = "0.32" }
swiftide-core = { path = "../swiftide-core", version = "0.33" }
swiftide-macros = { path = "../swiftide-macros", version = "0.33" }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion swiftide-langfuse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ reqwest = { version = "^0.12", default-features = false, features = [
anyhow.workspace = true
async-trait.workspace = true
dyn-clone.workspace = true
swiftide-core = { path = "../swiftide-core", version = "0.32" }
swiftide-core = { path = "../swiftide-core", version = "0.33" }

[dev-dependencies]
wiremock.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 @@ -24,7 +24,7 @@ serde_json = { workspace = true }
tera = { workspace = true }

# Internal
swiftide-core = { path = "../swiftide-core", version = "0.32.1" }
swiftide-core = { path = "../swiftide-core", version = "0.33.0" }

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

# Local dependencies
swiftide-core = { path = "../swiftide-core", version = "0.32" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.32" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.32" }
swiftide-query = { path = "../swiftide-query", version = "0.32" }
swiftide-agents = { path = "../swiftide-agents", version = "0.32", optional = true }
swiftide-macros = { path = "../swiftide-macros", version = "0.32", optional = true }
swiftide-langfuse = { path = "../swiftide-langfuse", version = "0.32", optional = true }
swiftide-core = { path = "../swiftide-core", version = "0.33" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.33" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.33" }
swiftide-query = { path = "../swiftide-query", version = "0.33" }
swiftide-agents = { path = "../swiftide-agents", version = "0.33", optional = true }
swiftide-macros = { path = "../swiftide-macros", version = "0.33", optional = true }
swiftide-langfuse = { path = "../swiftide-langfuse", version = "0.33", optional = true }

# Re-exports for macros and ease of use
anyhow.workspace = true
Expand Down
Loading