From 126fdec24344730b6a2cceeeaf62e2626b6c294e Mon Sep 17 00:00:00 2001 From: "glm-5.3-flash" Date: Mon, 7 Sep 2026 09:37:38 +0000 Subject: [PATCH] chore: release alkhttp 0.3.0 - version bump 0.2.0 -> 0.3.0 (the alkcall 0.6.0 consumption wave carries a compile-breaking change for downstream users of `OpenableAlpn::new`: handler closures gain the `_plan` parameter, so this release cannot be a patch) - README usage snippet 0.2 -> 0.3 - changelog: cut [0.3.0] with the alkcall 0.6.0 wave entry (OpenHandler plan parameter, Establishment.plan threading, pump_bidi availability) Verification: cargo test (454 passed), cargo test --all-features (587 passed), clippy -D warnings (default + all-features), cargo fmt --check, cargo doc --no-deps, cargo publish --dry-run --allow-dirty --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb27de9..c69aa59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ this crate adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [0.3.0] — 2026-09-07 + ### Changed - **`alkcall` dependency bumped to 0.6.0** (review 007's diff --git a/Cargo.lock b/Cargo.lock index 9281049..397c4f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -48,7 +48,7 @@ dependencies = [ [[package]] name = "alkhttp" -version = "0.2.0" +version = "0.3.0" dependencies = [ "alkcall", "arc-swap", diff --git a/Cargo.toml b/Cargo.toml index 2739fa9..ec4b8f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "alkhttp" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.85" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 277ae8f..cfd5ea3 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ A lean single-side build takes `default-features = false` plus the side it needs: ```toml -alkhttp = { version = "0.2", default-features = false, features = ["server"] } +alkhttp = { version = "0.3", default-features = false, features = ["server"] } ``` ## Security posture