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
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/aether-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ aether-core = { package = "aether-agent-core", path = "../aether-core", version
aether-project = { path = "../aether-project", version = "0.5.18" }
llm = { package = "aether-llm", path = "../llm", features = ["bedrock", "codex"], version = "0.7.16" }
mcp_utils = { package = "aether-mcp-utils", path = "../mcp-utils", version = "0.5.21" }
mcp-servers = { package = "aether-mcp-servers", path = "../mcp-servers", features = ["all"], version = "0.4.23" }
mcp-servers = { package = "aether-mcp-servers", path = "../mcp-servers", features = ["all"], version = "0.4.24" }
wisp = { package = "aether-wisp", path = "../wisp", version = "0.4.27" }
tui = { package = "aether-tui", path = "../tui", default-features = false, features = ["syntax"], version = "0.2.15" }
acp_utils = { package = "aether-acp-utils", path = "../acp-utils", features = ["server", "testing"], version = "0.3.27" }
agent-client-protocol = { workspace = true }
aether-lspd = { path = "../aether-lspd", version = "0.1.20" }
aether-lspd = { path = "../aether-lspd", version = "0.1.21" }
rmcp = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions crates/aether-lspd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [0.1.21](https://github.com/contextbridge/aether/compare/aether-lspd-v0.1.20...aether-lspd-v0.1.21) - 2026-06-30

### Other

- update Cargo.lock dependencies

## [0.1.20](https://github.com/contextbridge/aether/compare/aether-lspd-v0.1.19...aether-lspd-v0.1.20) - 2026-06-22

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/aether-lspd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aether-lspd"
version = "0.1.20"
version = "0.1.21"
edition = "2024"
description = "LSP daemon for sharing language servers across multiple agents"
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions crates/mcp-servers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [0.4.24](https://github.com/contextbridge/aether/compare/aether-mcp-servers-v0.4.23...aether-mcp-servers-v0.4.24) - 2026-06-30

### Other

- updated the following local packages: aether-lspd, aether-lspd

## [0.4.23](https://github.com/contextbridge/aether/compare/aether-mcp-servers-v0.4.22...aether-mcp-servers-v0.4.23) - 2026-06-30

### Added
Expand Down
6 changes: 3 additions & 3 deletions crates/mcp-servers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aether-mcp-servers"
version = "0.4.23"
version = "0.4.24"
edition = "2024"
description = "Built-in MCP tool servers for the Aether AI agent framework"
license = "MIT"
Expand Down Expand Up @@ -87,7 +87,7 @@ schemars = { workspace = true }
clap = { workspace = true, features = ["env"] }
mcp_utils = { package = "aether-mcp-utils", path = "../mcp-utils", version = "0.5.21" }
utils = { package = "aether-utils", path = "../utils", version = "0.2.8" }
aether-lspd = { path = "../aether-lspd", optional = true, version = "0.1.20" }
aether-lspd = { path = "../aether-lspd", optional = true, version = "0.1.21" }
futures = { workspace = true, optional = true }
globset = { workspace = true, optional = true }
grep = { workspace = true, optional = true }
Expand Down Expand Up @@ -116,7 +116,7 @@ llm = { package = "aether-llm", path = "../llm", optional = true, version = "0.7

[dev-dependencies]
tempfile = { workspace = true }
aether-lspd = { path = "../aether-lspd", features = ["testing"], version = "0.1.20" }
aether-lspd = { path = "../aether-lspd", features = ["testing"], version = "0.1.21" }
mcp-servers = { package = "aether-mcp-servers", path = ".", features = ["test-helpers"] }

[[bin]]
Expand Down