Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v0.17.0 #548

Merged
merged 1 commit into from
Jan 16, 2025
Merged
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
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

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

## [0.17.0](https://github.com/bosun-ai/swiftide/compare/v0.16.4...v0.17.0) - 2025-01-16

### New features

- [835c35e](https://github.com/bosun-ai/swiftide/commit/835c35e7d74811daa90f7ca747054d1919633058) *(agents)* Redrive completions manually on failure (#551)

````text
Sometimes LLMs fail a completion without deterministic errors, or the
user case where you just want to retry. `redrive` can now be called on a
context, popping any new messages (if any), and making the messages
available again to the agent.
````

- [f83f3f0](https://github.com/bosun-ai/swiftide/commit/f83f3f03bbf6a9591b54521dde91bf1a5ed19c5c) *(agents)* Implement ToolExecutor for common dyn pointers (#549)

- [7f85735](https://github.com/bosun-ai/swiftide/commit/7f857358e46e825494ba927dffb33c3afa0d762e) *(query)* Add custom lancedb query generation for lancedb search (#518)

- [ce4e34b](https://github.com/bosun-ai/swiftide/commit/ce4e34be42ce1a0ab69770d03695bd67f99a8739) *(tree-sitter)* Add golang support (#552)

````text
Seems someone conveniently forgot to add Golang support for the
splitter.
````

### Miscellaneous

- [0000000](https://github.com/bosun-ai/swiftide/commit/0000000) Update Cargo.lock dependencies


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.16.4...0.17.0



## [0.16.4](https://github.com/bosun-ai/swiftide/compare/v0.16.3...v0.16.4) - 2025-01-12

### New features
Expand Down
20 changes: 10 additions & 10 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.16.4"
version = "0.17.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 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.16" }
swiftide-macros = { path = "../swiftide-macros", version = "0.16" }
swiftide-core = { path = "../swiftide-core", version = "0.17" }
swiftide-macros = { path = "../swiftide-macros", version = "0.17" }
anyhow.workspace = true
async-trait.workspace = true
dyn-clone.workspace = true
Expand All @@ -27,7 +27,7 @@ serde.workspace = true
serde_json.workspace = true

[dev-dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.16", features = [
swiftide-core = { path = "../swiftide-core", version = "0.17", features = [
"test-utils",
] }
mockall.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.16" }
swiftide-macros = { path = "../swiftide-macros", version = "0.16" }
swiftide-core = { path = "../swiftide-core", version = "0.17" }
swiftide-macros = { path = "../swiftide-macros", version = "0.17" }

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.16" }
swiftide-macros = { path = "../swiftide-macros", version = "0.16" }
swiftide-core = { path = "../swiftide-core", version = "0.17" }
swiftide-macros = { path = "../swiftide-macros", version = "0.17" }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions swiftide-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ rustversion = "1.0.18"
trybuild = "1.0"
prettyplease = "0.2.25"
insta.workspace = true
swiftide-core = { path = "../swiftide-core/", version = "0.16" }
swiftide = { path = "../swiftide/", version = "0.16" }
swiftide-core = { path = "../swiftide-core/", version = "0.17" }
swiftide = { path = "../swiftide/", version = "0.17" }

[lints]
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_json = { workspace = true }
tera = { workspace = true }

# Internal
swiftide-core = { path = "../swiftide-core", version = "0.16.4" }
swiftide-core = { path = "../swiftide-core", version = "0.17.0" }

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

# Local dependencies
swiftide-core = { path = "../swiftide-core", version = "0.16" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.16" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.16" }
swiftide-query = { path = "../swiftide-query", version = "0.16" }
swiftide-agents = { path = "../swiftide-agents", version = "0.16", optional = true }
swiftide-core = { path = "../swiftide-core", version = "0.17" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.17" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.17" }
swiftide-query = { path = "../swiftide-query", version = "0.17" }
swiftide-agents = { path = "../swiftide-agents", version = "0.17", optional = true }

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