Skip to content

Commit 69eedfd

Browse files
thrashr888claude
andcommitted
release: v0.13.0
Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3a7fbbd commit 69eedfd

7 files changed

Lines changed: 27 additions & 13 deletions

File tree

.beads/issues.jsonl

Lines changed: 19 additions & 1 deletion
Large diffs are not rendered by default.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agentkernel"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition = "2024"
55
description = "Run AI coding agents in secure, isolated microVMs"
66
authors = ["Paul Thrasher <thrashr888@gmail.com>"]

docs/changelog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ See [GitHub Releases](https://github.com/thrashr888/agentkernel/releases) for do
66

77
---
88

9-
## Unreleased — Desktop Tray & Resource Visibility
9+
## [v0.13.0](https://github.com/thrashr888/agentkernel/releases/tag/v0.13.0) — CLI Restructure, Tray & Metrics
10+
11+
_February 12, 2026_
1012

1113
### Added
1214

src/http_api.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -439,10 +439,7 @@ async fn handle_request(
439439
let body = crate::metrics::gather();
440440
return Ok(Response::builder()
441441
.status(StatusCode::OK)
442-
.header(
443-
"Content-Type",
444-
"text/plain; version=0.0.4; charset=utf-8",
445-
)
442+
.header("Content-Type", "text/plain; version=0.0.4; charset=utf-8")
446443
.body(full(body))
447444
.unwrap());
448445
}

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ mod image_builder;
1919
mod images;
2020
mod languages;
2121
mod mcp;
22+
mod metrics;
2223
mod opencode;
2324
mod permissions;
2425
mod pipeline;
@@ -38,7 +39,6 @@ mod snapshot;
3839
#[allow(dead_code)]
3940
mod ssh;
4041
mod stats;
41-
mod metrics;
4242
mod template;
4343
mod tls;
4444
mod validation;

src/metrics.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ static REGISTRY: LazyLock<Registry> = LazyLock::new(Registry::new);
1414

1515
static HTTP_REQUESTS_TOTAL: LazyLock<IntCounterVec> = LazyLock::new(|| {
1616
let c = IntCounterVec::new(
17-
prometheus::opts!(
18-
"agentkernel_http_requests_total",
19-
"Total HTTP API requests"
20-
),
17+
prometheus::opts!("agentkernel_http_requests_total", "Total HTTP API requests"),
2118
&["method", "path", "status"],
2219
)
2320
.expect("metric can be created");

0 commit comments

Comments
 (0)