We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aafe99 commit 6a979a6Copy full SHA for 6a979a6
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changes
2
3
+## [3.6.1] - 2026-02-02
4
+
5
+* Make control module public
6
7
## [3.6.0] - 2026-02-02
8
9
* Refactor control messages
Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ntex-h2"
-version = "3.6.0"
+version = "3.6.1"
license = "MIT OR Apache-2.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "An HTTP/2 client and server"
src/lib.rs
@@ -87,7 +87,7 @@ mod codec;
87
mod config;
88
mod connection;
89
mod consts;
90
-mod control;
+pub mod control;
91
mod default;
92
mod dispatcher;
93
mod error;
0 commit comments