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

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

6 changes: 6 additions & 0 deletions crates/acp-utils/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.3.37](https://github.com/contextbridge/aether/compare/aether-acp-utils-v0.3.36...aether-acp-utils-v0.3.37) - 2026-08-01

### Other

- *(deps)* bump rmcp from 1.8.0 to 3.0.0 ([#223](https://github.com/contextbridge/aether/pull/223))

## [0.3.36](https://github.com/contextbridge/aether/compare/aether-acp-utils-v0.3.35...aether-acp-utils-v0.3.36) - 2026-07-28

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/acp-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aether-acp-utils"
version = "0.3.36"
version = "0.3.37"
edition = "2024"
description = "Agent Client Protocol (ACP) utilities for the Aether AI agent framework"
license = "MIT"
Expand Down Expand Up @@ -37,7 +37,7 @@ rmcp = { workspace = true, features = ["client", "elicitation"] }
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
mcp_utils = { package = "aether-mcp-utils", path = "../mcp-utils", version = "0.5.30" }
mcp_utils = { package = "aether-mcp-utils", path = "../mcp-utils", version = "0.5.31" }
tokio = { workspace = true, features = ["rt", "macros", "sync", "io-util", "process", "time"] }
tracing = { workspace = true }
utils = { package = "aether-utils", path = "../utils", version = "0.2.11" }
Expand Down
6 changes: 6 additions & 0 deletions crates/aether-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.11](https://github.com/contextbridge/aether/compare/aether-auth-v0.1.10...aether-auth-v0.1.11) - 2026-08-01

### Other

- *(deps)* bump rmcp from 1.8.0 to 3.0.0 ([#223](https://github.com/contextbridge/aether/pull/223))

## [0.1.10](https://github.com/contextbridge/aether/compare/aether-auth-v0.1.9...aether-auth-v0.1.10) - 2026-07-28

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/aether-auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aether-auth"
version = "0.1.10"
version = "0.1.11"
edition = "2024"
description = "OAuth credential storage and authorization flows for the Aether AI agent framework"
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions crates/aether-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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

## [0.7.35](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.34...aether-agent-cli-v0.7.35) - 2026-08-01

### Other

- *(deps)* bump rmcp from 1.8.0 to 3.0.0 ([#223](https://github.com/contextbridge/aether/pull/223))
- scheduled code-cleanup ([#318](https://github.com/contextbridge/aether/pull/318))

## [0.7.34](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.33...aether-agent-cli-v0.7.34) - 2026-07-29

### Other
Expand Down
22 changes: 11 additions & 11 deletions crates/aether-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aether-agent-cli"
version = "0.7.34"
version = "0.7.35"
edition = "2024"
description = "CLI and ACP server for the Aether AI coding agent"
license = "MIT"
Expand Down Expand Up @@ -29,16 +29,16 @@ name = "aether"
path = "src/main.rs"

[dependencies]
aether-auth = { path = "../aether-auth", version = "0.1.10", features = ["keyring"] }
aether-core = { package = "aether-agent-core", path = "../aether-core", version = "0.6.30" }
aether-project = { path = "../aether-project", version = "0.5.31" }
aether-telemetry = { path = "../aether-telemetry", version = "0.1.11" }
llm = { package = "aether-llm", path = "../llm", features = ["bedrock", "codex"], version = "0.7.25" }
mcp_utils = { package = "aether-mcp-utils", path = "../mcp-utils", version = "0.5.30" }
mcp-servers = { package = "aether-mcp-servers", path = "../mcp-servers", features = ["all"], version = "0.4.37" }
wisp = { package = "aether-wisp", path = "../wisp", version = "0.4.38" }
aether-auth = { path = "../aether-auth", version = "0.1.11", features = ["keyring"] }
aether-core = { package = "aether-agent-core", path = "../aether-core", version = "0.6.31" }
aether-project = { path = "../aether-project", version = "0.5.32" }
aether-telemetry = { path = "../aether-telemetry", version = "0.1.12" }
llm = { package = "aether-llm", path = "../llm", features = ["bedrock", "codex"], version = "0.7.26" }
mcp_utils = { package = "aether-mcp-utils", path = "../mcp-utils", version = "0.5.31" }
mcp-servers = { package = "aether-mcp-servers", path = "../mcp-servers", features = ["all"], version = "0.4.38" }
wisp = { package = "aether-wisp", path = "../wisp", version = "0.4.39" }
tui = { package = "aether-tui", path = "../tui", default-features = false, features = ["syntax"], version = "0.2.19" }
acp_utils = { package = "aether-acp-utils", path = "../acp-utils", features = ["server", "testing"], version = "0.3.36" }
acp_utils = { package = "aether-acp-utils", path = "../acp-utils", features = ["server", "testing"], version = "0.3.37" }
agent-client-protocol = { workspace = true }
aether-lspd = { path = "../aether-lspd", version = "0.1.30" }
rmcp = { workspace = true, features = ["client", "elicitation", "server", "transport-streamable-http-client-reqwest"] }
Expand All @@ -65,4 +65,4 @@ url = { workspace = true }
libc = { workspace = true }

[dev-dependencies]
acp_utils = { package = "aether-acp-utils", path = "../acp-utils", features = ["testing"], version = "0.3.36" }
acp_utils = { package = "aether-acp-utils", path = "../acp-utils", features = ["testing"], version = "0.3.37" }
8 changes: 8 additions & 0 deletions crates/aether-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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

## [0.6.31](https://github.com/contextbridge/aether/compare/aether-agent-core-v0.6.30...aether-agent-core-v0.6.31) - 2026-08-01

### Other

- *(deps)* bump rmcp from 1.8.0 to 3.0.0 ([#223](https://github.com/contextbridge/aether/pull/223))
- scheduled code-cleanup ([#315](https://github.com/contextbridge/aether/pull/315))
- scheduled code-cleanup ([#313](https://github.com/contextbridge/aether/pull/313))

## [0.6.30](https://github.com/contextbridge/aether/compare/aether-agent-core-v0.6.29...aether-agent-core-v0.6.30) - 2026-07-29

### Added
Expand Down
10 changes: 5 additions & 5 deletions crates/aether-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aether-agent-core"
version = "0.6.30"
version = "0.6.31"
edition = "2024"
description = "A minimal Rust library for building AI agents with MCP tool integration"
license = "MIT"
Expand Down Expand Up @@ -42,12 +42,12 @@ tracing-subscriber = { workspace = true }
clap = { workspace = true }
thiserror = { workspace = true }
agent-client-protocol = { workspace = true }
acp_utils = { package = "aether-acp-utils", path = "../acp-utils", default-features = false, version = "0.3.36" }
acp_utils = { package = "aether-acp-utils", path = "../acp-utils", default-features = false, version = "0.3.37" }
glob = { workspace = true }
regex = { workspace = true }
aether-auth = { path = "../aether-auth", version = "0.1.10" }
mcp_utils = { package = "aether-mcp-utils", path = "../mcp-utils", version = "0.5.30" }
llm = { package = "aether-llm", path = "../llm", version = "0.7.25", features = ["codex"] }
aether-auth = { path = "../aether-auth", version = "0.1.11" }
mcp_utils = { package = "aether-mcp-utils", path = "../mcp-utils", version = "0.5.31" }
llm = { package = "aether-llm", path = "../llm", version = "0.7.26", features = ["codex"] }
utils = { package = "aether-utils", path = "../utils", version = "0.2.11" }

[features]
Expand Down
Loading
Loading