Skip to content

Commit

Permalink
chore: release v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SwabbieBosun authored Dec 22, 2024
1 parent 7779c44 commit 8292e5f
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 27 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

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

## [0.15.0](https://github.com/bosun-ai/swiftide/compare/v0.14.4...v0.15.0) - 2024-12-22

### New features

- [a1b9a2d](https://github.com/bosun-ai/swiftide/commit/a1b9a2d37715420d3e2cc80d731e3713a22c7c50) *(query)* Ensure concrete names for transformations are used when debugging (#496)

- [7779c44](https://github.com/bosun-ai/swiftide/commit/7779c44de3581ac865ac808637c473525d27cabb) *(query)* Ensure query pipeline consistently debug logs in all other stages too

- [55dde88](https://github.com/bosun-ai/swiftide/commit/55dde88df888b60a7ccae5a68ba03d20bc1f57df) *(query)* Debug full retrieved documents when debug mode is enabled (#495)

- [66031ba](https://github.com/bosun-ai/swiftide/commit/66031ba27b946add0533775423d468abb3187604) *(query)* Log query pipeline answer on debug (#497)

### Miscellaneous

- [d255772](https://github.com/bosun-ai/swiftide/commit/d255772cc933c839e3aaaffccd343acf75dcb251) *(agents)* Rename `CommandError::FailedWithOutput` to `CommandError::NonZeroExit` (#484)

````text
Better describes what is going on. I.e. `rg` exits with 1 if nothing is
found, tests generally do the same if they fail.
````

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


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.14.4...0.15.0



## [0.14.4](https://github.com/bosun-ai/swiftide/compare/v0.14.3...v0.14.4) - 2024-12-11

### 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.14.4"
version = "0.15.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
8 changes: 4 additions & 4 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.14" }
swiftide-macros = { path = "../swiftide-macros", version = "0.14" }
swiftide-core = { path = "../swiftide-core", version = "0.15" }
swiftide-macros = { path = "../swiftide-macros", version = "0.15" }
anyhow.workspace = true
async-trait.workspace = true
dyn-clone.workspace = true
Expand All @@ -27,10 +27,10 @@ serde.workspace = true
serde_json.workspace = true

[dev-dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.14", features = [
swiftide-core = { path = "../swiftide-core", version = "0.15", features = [
"test-utils",
] }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.14", features = [
swiftide-integrations = { path = "../swiftide-integrations", version = "0.15", features = [
"openai",
] }
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.14" }
swiftide-macros = { path = "../swiftide-macros", version = "0.14" }
swiftide-core = { path = "../swiftide-core", version = "0.15" }
swiftide-macros = { path = "../swiftide-macros", version = "0.15" }

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.14" }
swiftide-macros = { path = "../swiftide-macros", version = "0.14" }
swiftide-core = { path = "../swiftide-core", version = "0.15" }
swiftide-macros = { path = "../swiftide-macros", version = "0.15" }

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.14" }
swiftide = { path = "../swiftide/", version = "0.14" }
swiftide-core = { path = "../swiftide-core/", version = "0.15" }
swiftide = { path = "../swiftide/", version = "0.15" }

[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 @@ -24,7 +24,7 @@ serde = { workspace = true }
serde_json = { workspace = true }

# Internal
swiftide-core = { path = "../swiftide-core", version = "0.14.4" }
swiftide-core = { path = "../swiftide-core", version = "0.15.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.14" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.14" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.14" }
swiftide-query = { path = "../swiftide-query", version = "0.14" }
swiftide-agents = { path = "../swiftide-agents", version = "0.14", optional = true }
swiftide-core = { path = "../swiftide-core", version = "0.15" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.15" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.15" }
swiftide-query = { path = "../swiftide-query", version = "0.15" }
swiftide-agents = { path = "../swiftide-agents", version = "0.15", optional = true }

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

0 comments on commit 8292e5f

Please sign in to comment.