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 17, 2024
1 parent e15f529 commit dd1635e
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 27 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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-17

### Miscellaneous

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

Please sign in to comment.